| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| profile | Profile? |
|
No | - |
| profileId | String? |
|
No | - |
| month | Int? |
|
No | - |
| year | Int? |
|
No | - |
| day | Int? |
|
No | - |
| gamesPlayed | Int? |
|
No | - |
Find zero or one Activity
// Get one Activity
const activity = await prisma.activity.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereUniqueInput | Yes |
Find first Activity
// Get one Activity
const activity = await prisma.activity.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereInput | No |
| orderBy | ActivityOrderByWithRelationInput[] | ActivityOrderByWithRelationInput | No |
| cursor | ActivityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ActivityScalarFieldEnum[] | No |
Find zero or more Activity
// Get all Activity
const Activity = await prisma.activity.findMany()
// Get first 10 Activity
const Activity = await prisma.activity.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereInput | No |
| orderBy | ActivityOrderByWithRelationInput[] | ActivityOrderByWithRelationInput | No |
| cursor | ActivityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ActivityScalarFieldEnum[] | No |
Create one Activity
// Create one Activity
const Activity = await prisma.activity.create({
data: {
// ... data to create a Activity
}
})
| Name | Type | Required |
|---|---|---|
| data | ActivityCreateInput | ActivityUncheckedCreateInput | Yes |
Delete one Activity
// Delete one Activity
const Activity = await prisma.activity.delete({
where: {
// ... filter to delete one Activity
}
})
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereUniqueInput | Yes |
Update one Activity
// Update one Activity
const activity = await prisma.activity.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ActivityUpdateInput | ActivityUncheckedUpdateInput | Yes |
| where | ActivityWhereUniqueInput | Yes |
Delete zero or more Activity
// Delete a few Activity
const { count } = await prisma.activity.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereInput | No |
Update zero or one Activity
const { count } = await prisma.activity.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ActivityUpdateManyMutationInput | ActivityUncheckedUpdateManyInput | Yes |
| where | ActivityWhereInput | No |
Create or update one Activity
// Update or create a Activity
const activity = await prisma.activity.upsert({
create: {
// ... data to create a Activity
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Activity we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ActivityWhereUniqueInput | Yes |
| create | ActivityCreateInput | ActivityUncheckedCreateInput | Yes |
| update | ActivityUpdateInput | ActivityUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| profile | Profile? |
|
No | - |
| profileId | String? |
|
No | - |
| champion | String |
|
Yes | - |
| wins | Int? |
|
No | - |
| games | Int? |
|
No | - |
| spell1Casts | Int? |
|
No | - |
| spell2Casts | Int? |
|
No | - |
| spell3Casts | Int? |
|
No | - |
| spell4Casts | Int? |
|
No | - |
Find zero or one ChampionWinrate
// Get one ChampionWinrate
const championWinrate = await prisma.championWinrate.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | Yes |
Find first ChampionWinrate
// Get one ChampionWinrate
const championWinrate = await prisma.championWinrate.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereInput | No |
| orderBy | ChampionWinrateOrderByWithRelationInput[] | ChampionWinrateOrderByWithRelationInput | No |
| cursor | ChampionWinrateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChampionWinrateScalarFieldEnum[] | No |
Find zero or more ChampionWinrate
// Get all ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.findMany()
// Get first 10 ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereInput | No |
| orderBy | ChampionWinrateOrderByWithRelationInput[] | ChampionWinrateOrderByWithRelationInput | No |
| cursor | ChampionWinrateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChampionWinrateScalarFieldEnum[] | No |
Create one ChampionWinrate
// Create one ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.create({
data: {
// ... data to create a ChampionWinrate
}
})
| Name | Type | Required |
|---|---|---|
| data | ChampionWinrateCreateInput | ChampionWinrateUncheckedCreateInput | Yes |
Delete one ChampionWinrate
// Delete one ChampionWinrate
const ChampionWinrate = await prisma.championWinrate.delete({
where: {
// ... filter to delete one ChampionWinrate
}
})
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | Yes |
Update one ChampionWinrate
// Update one ChampionWinrate
const championWinrate = await prisma.championWinrate.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChampionWinrateUpdateInput | ChampionWinrateUncheckedUpdateInput | Yes |
| where | ChampionWinrateWhereUniqueInput | Yes |
Delete zero or more ChampionWinrate
// Delete a few ChampionWinrate
const { count } = await prisma.championWinrate.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereInput | No |
Update zero or one ChampionWinrate
const { count } = await prisma.championWinrate.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChampionWinrateUpdateManyMutationInput | ChampionWinrateUncheckedUpdateManyInput | Yes |
| where | ChampionWinrateWhereInput | No |
Create or update one ChampionWinrate
// Update or create a ChampionWinrate
const championWinrate = await prisma.championWinrate.upsert({
create: {
// ... data to create a ChampionWinrate
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChampionWinrate we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | Yes |
| create | ChampionWinrateCreateInput | ChampionWinrateUncheckedCreateInput | Yes |
| update | ChampionWinrateUpdateInput | ChampionWinrateUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| profile | Profile? |
|
No | - |
| profileId | String? |
|
No | - |
| name | String |
|
Yes | - |
| wins | Int? |
|
No | - |
| losses | Int? |
|
No | - |
| winrate | String |
|
Yes | - |
Find zero or one Duo
// Get one Duo
const duo = await prisma.duo.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DuoWhereUniqueInput | Yes |
Find first Duo
// Get one Duo
const duo = await prisma.duo.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DuoWhereInput | No |
| orderBy | DuoOrderByWithRelationInput[] | DuoOrderByWithRelationInput | No |
| cursor | DuoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DuoScalarFieldEnum[] | No |
Find zero or more Duo
// Get all Duo
const Duo = await prisma.duo.findMany()
// Get first 10 Duo
const Duo = await prisma.duo.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DuoWhereInput | No |
| orderBy | DuoOrderByWithRelationInput[] | DuoOrderByWithRelationInput | No |
| cursor | DuoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DuoScalarFieldEnum[] | No |
Create one Duo
// Create one Duo
const Duo = await prisma.duo.create({
data: {
// ... data to create a Duo
}
})
| Name | Type | Required |
|---|---|---|
| data | DuoCreateInput | DuoUncheckedCreateInput | Yes |
Delete one Duo
// Delete one Duo
const Duo = await prisma.duo.delete({
where: {
// ... filter to delete one Duo
}
})
| Name | Type | Required |
|---|---|---|
| where | DuoWhereUniqueInput | Yes |
Update one Duo
// Update one Duo
const duo = await prisma.duo.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DuoUpdateInput | DuoUncheckedUpdateInput | Yes |
| where | DuoWhereUniqueInput | Yes |
Delete zero or more Duo
// Delete a few Duo
const { count } = await prisma.duo.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DuoWhereInput | No |
Update zero or one Duo
const { count } = await prisma.duo.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DuoUpdateManyMutationInput | DuoUncheckedUpdateManyInput | Yes |
| where | DuoWhereInput | No |
Create or update one Duo
// Update or create a Duo
const duo = await prisma.duo.upsert({
create: {
// ... data to create a Duo
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Duo we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DuoWhereUniqueInput | Yes |
| create | DuoCreateInput | DuoUncheckedCreateInput | Yes |
| update | DuoUpdateInput | DuoUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| startTime | String |
|
Yes | - |
| currentSeason | String |
|
Yes | - |
| seeding | Boolean |
|
Yes | - |
Find zero or one Constant
// Get one Constant
const constant = await prisma.constant.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereUniqueInput | Yes |
Find first Constant
// Get one Constant
const constant = await prisma.constant.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereInput | No |
| orderBy | ConstantOrderByWithRelationInput[] | ConstantOrderByWithRelationInput | No |
| cursor | ConstantWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConstantScalarFieldEnum[] | No |
Find zero or more Constant
// Get all Constant
const Constant = await prisma.constant.findMany()
// Get first 10 Constant
const Constant = await prisma.constant.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereInput | No |
| orderBy | ConstantOrderByWithRelationInput[] | ConstantOrderByWithRelationInput | No |
| cursor | ConstantWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConstantScalarFieldEnum[] | No |
Create one Constant
// Create one Constant
const Constant = await prisma.constant.create({
data: {
// ... data to create a Constant
}
})
| Name | Type | Required |
|---|---|---|
| data | ConstantCreateInput | ConstantUncheckedCreateInput | Yes |
Delete one Constant
// Delete one Constant
const Constant = await prisma.constant.delete({
where: {
// ... filter to delete one Constant
}
})
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereUniqueInput | Yes |
Update one Constant
// Update one Constant
const constant = await prisma.constant.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConstantUpdateInput | ConstantUncheckedUpdateInput | Yes |
| where | ConstantWhereUniqueInput | Yes |
Delete zero or more Constant
// Delete a few Constant
const { count } = await prisma.constant.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereInput | No |
Update zero or one Constant
const { count } = await prisma.constant.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConstantUpdateManyMutationInput | ConstantUncheckedUpdateManyInput | Yes |
| where | ConstantWhereInput | No |
Create or update one Constant
// Update or create a Constant
const constant = await prisma.constant.upsert({
create: {
// ... data to create a Constant
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Constant we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConstantWhereUniqueInput | Yes |
| create | ConstantCreateInput | ConstantUncheckedCreateInput | Yes |
| update | ConstantUpdateInput | ConstantUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| timestamp | Int? |
|
No | - |
| position | Position[] |
|
Yes | - |
Find zero or one Event
// Get one Event
const event = await prisma.event.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Find first Event
// Get one Event
const event = await prisma.event.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum[] | No |
Find zero or more Event
// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum[] | No |
Create one Event
// Create one Event
const Event = await prisma.event.create({
data: {
// ... data to create a Event
}
})
| Name | Type | Required |
|---|---|---|
| data | EventCreateInput | EventUncheckedCreateInput | Yes |
Delete one Event
// Delete one Event
const Event = await prisma.event.delete({
where: {
// ... filter to delete one Event
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Update one Event
// Update one Event
const event = await prisma.event.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| where | EventWhereUniqueInput | Yes |
Delete zero or more Event
// Delete a few Event
const { count } = await prisma.event.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
Update zero or one Event
const { count } = await prisma.event.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyInput | Yes |
| where | EventWhereInput | No |
Create or update one Event
// Update or create a Event
const event = await prisma.event.upsert({
create: {
// ... data to create a Event
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Event we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
| create | EventCreateInput | EventUncheckedCreateInput | Yes |
| update | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| matchId | String |
|
Yes | - |
| gameId | String |
|
Yes | - |
| gameCreation | String |
|
Yes | - |
| gameStartTimestamp | String |
|
Yes | - |
| gameEndTimestamp | String |
|
Yes | - |
| duration | Int? |
|
No | - |
| start | String |
|
Yes | - |
| gameVersion | String |
|
Yes | - |
| blueTeam | Team? |
|
No | - |
| blueTeamId | String? |
|
No | - |
| redTeam | Team? |
|
No | - |
| redTeamId | String? |
|
No | - |
| source | Source[] |
|
Yes | - |
| tournament | String |
|
Yes | - |
| gameInSeries | Int? |
|
No | - |
| vod | String |
|
Yes | - |
| platformId | String |
|
Yes | - |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStat[] |
|
Yes | - |
| from_Team_game | Team[] |
|
Yes | - |
Find zero or one Game
// Get one Game
const game = await prisma.game.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
Find first Game
// Get one Game
const game = await prisma.game.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
| orderBy | GameOrderByWithRelationInput[] | GameOrderByWithRelationInput | No |
| cursor | GameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GameScalarFieldEnum[] | No |
Find zero or more Game
// Get all Game
const Game = await prisma.game.findMany()
// Get first 10 Game
const Game = await prisma.game.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
| orderBy | GameOrderByWithRelationInput[] | GameOrderByWithRelationInput | No |
| cursor | GameWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GameScalarFieldEnum[] | No |
Create one Game
// Create one Game
const Game = await prisma.game.create({
data: {
// ... data to create a Game
}
})
| Name | Type | Required |
|---|---|---|
| data | GameCreateInput | GameUncheckedCreateInput | Yes |
Delete one Game
// Delete one Game
const Game = await prisma.game.delete({
where: {
// ... filter to delete one Game
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
Update one Game
// Update one Game
const game = await prisma.game.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GameUpdateInput | GameUncheckedUpdateInput | Yes |
| where | GameWhereUniqueInput | Yes |
Delete zero or more Game
// Delete a few Game
const { count } = await prisma.game.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereInput | No |
Update zero or one Game
const { count } = await prisma.game.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyInput | Yes |
| where | GameWhereInput | No |
Create or update one Game
// Update or create a Game
const game = await prisma.game.upsert({
create: {
// ... data to create a Game
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Game we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GameWhereUniqueInput | Yes |
| create | GameCreateInput | GameUncheckedCreateInput | Yes |
| update | GameUpdateInput | GameUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| team | Team? |
|
No | - |
| teamId | String? |
|
No | - |
| first | Boolean |
|
Yes | - |
| kills | Int? |
|
No | - |
| type | String |
|
Yes | - |
Find zero or one Objective
// Get one Objective
const objective = await prisma.objective.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereUniqueInput | Yes |
Find first Objective
// Get one Objective
const objective = await prisma.objective.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereInput | No |
| orderBy | ObjectiveOrderByWithRelationInput[] | ObjectiveOrderByWithRelationInput | No |
| cursor | ObjectiveWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ObjectiveScalarFieldEnum[] | No |
Find zero or more Objective
// Get all Objective
const Objective = await prisma.objective.findMany()
// Get first 10 Objective
const Objective = await prisma.objective.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereInput | No |
| orderBy | ObjectiveOrderByWithRelationInput[] | ObjectiveOrderByWithRelationInput | No |
| cursor | ObjectiveWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ObjectiveScalarFieldEnum[] | No |
Create one Objective
// Create one Objective
const Objective = await prisma.objective.create({
data: {
// ... data to create a Objective
}
})
| Name | Type | Required |
|---|---|---|
| data | ObjectiveCreateInput | ObjectiveUncheckedCreateInput | Yes |
Delete one Objective
// Delete one Objective
const Objective = await prisma.objective.delete({
where: {
// ... filter to delete one Objective
}
})
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereUniqueInput | Yes |
Update one Objective
// Update one Objective
const objective = await prisma.objective.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ObjectiveUpdateInput | ObjectiveUncheckedUpdateInput | Yes |
| where | ObjectiveWhereUniqueInput | Yes |
Delete zero or more Objective
// Delete a few Objective
const { count } = await prisma.objective.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereInput | No |
Update zero or one Objective
const { count } = await prisma.objective.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ObjectiveUpdateManyMutationInput | ObjectiveUncheckedUpdateManyInput | Yes |
| where | ObjectiveWhereInput | No |
Create or update one Objective
// Update or create a Objective
const objective = await prisma.objective.upsert({
create: {
// ... data to create a Objective
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Objective we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ObjectiveWhereUniqueInput | Yes |
| create | ObjectiveCreateInput | ObjectiveUncheckedCreateInput | Yes |
| update | ObjectiveUpdateInput | ObjectiveUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| team | Team? |
|
No | - |
| teamId | String? |
|
No | - |
| championId | Int? |
|
No | - |
| pickTurn | Int? |
|
No | - |
Find zero or one PickBan
// Get one PickBan
const pickBan = await prisma.pickBan.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereUniqueInput | Yes |
Find first PickBan
// Get one PickBan
const pickBan = await prisma.pickBan.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereInput | No |
| orderBy | PickBanOrderByWithRelationInput[] | PickBanOrderByWithRelationInput | No |
| cursor | PickBanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PickBanScalarFieldEnum[] | No |
Find zero or more PickBan
// Get all PickBan
const PickBan = await prisma.pickBan.findMany()
// Get first 10 PickBan
const PickBan = await prisma.pickBan.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereInput | No |
| orderBy | PickBanOrderByWithRelationInput[] | PickBanOrderByWithRelationInput | No |
| cursor | PickBanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PickBanScalarFieldEnum[] | No |
Create one PickBan
// Create one PickBan
const PickBan = await prisma.pickBan.create({
data: {
// ... data to create a PickBan
}
})
| Name | Type | Required |
|---|---|---|
| data | PickBanCreateInput | PickBanUncheckedCreateInput | Yes |
Delete one PickBan
// Delete one PickBan
const PickBan = await prisma.pickBan.delete({
where: {
// ... filter to delete one PickBan
}
})
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereUniqueInput | Yes |
Update one PickBan
// Update one PickBan
const pickBan = await prisma.pickBan.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PickBanUpdateInput | PickBanUncheckedUpdateInput | Yes |
| where | PickBanWhereUniqueInput | Yes |
Delete zero or more PickBan
// Delete a few PickBan
const { count } = await prisma.pickBan.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereInput | No |
Update zero or one PickBan
const { count } = await prisma.pickBan.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PickBanUpdateManyMutationInput | PickBanUncheckedUpdateManyInput | Yes |
| where | PickBanWhereInput | No |
Create or update one PickBan
// Update or create a PickBan
const pickBan = await prisma.pickBan.upsert({
create: {
// ... data to create a PickBan
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PickBan we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PickBanWhereUniqueInput | Yes |
| create | PickBanCreateInput | PickBanUncheckedCreateInput | Yes |
| update | PickBanUpdateInput | PickBanUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| puuid | String |
|
Yes | - |
| accountId | String |
|
Yes | - |
| platformId | String |
|
Yes | - |
| summonerId | String |
|
Yes | - |
| summonerName | String |
|
Yes | - |
| summonerLevel | Int? |
|
No | - |
| profileIconId | Int? |
|
No | - |
| revisionDate | String |
|
Yes | - |
| kills | PlayerKill[] |
|
Yes | - |
| deaths | PlayerKill[] |
|
Yes | - |
| teams | Team[] |
|
Yes | - |
| profile | Profile? |
|
No | - |
| profileId | String? |
|
No | - |
| monsterKills | TeamMonsterKill[] |
|
Yes | - |
| buildingKills | TeamBuildingKill[] |
|
Yes | - |
| itemEvent | PlayerItemEvent[] |
|
Yes | - |
| endOfGameStats | PlayerEndOfGameStat[] |
|
Yes | - |
| snapshots | PlayerSnapshot[] |
|
Yes | - |
| wardEvents | PlayerWardEvent[] |
|
Yes | - |
| skillLevelUpEvents | PlayerSkillLevelUpEvent[] |
|
Yes | - |
Find zero or one Player
// Get one Player
const player = await prisma.player.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
Find first Player
// Get one Player
const player = await prisma.player.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
| orderBy | PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput | No |
| cursor | PlayerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerScalarFieldEnum[] | No |
Find zero or more Player
// Get all Player
const Player = await prisma.player.findMany()
// Get first 10 Player
const Player = await prisma.player.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
| orderBy | PlayerOrderByWithRelationInput[] | PlayerOrderByWithRelationInput | No |
| cursor | PlayerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerScalarFieldEnum[] | No |
Create one Player
// Create one Player
const Player = await prisma.player.create({
data: {
// ... data to create a Player
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerCreateInput | PlayerUncheckedCreateInput | Yes |
Delete one Player
// Delete one Player
const Player = await prisma.player.delete({
where: {
// ... filter to delete one Player
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
Update one Player
// Update one Player
const player = await prisma.player.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerUpdateInput | PlayerUncheckedUpdateInput | Yes |
| where | PlayerWhereUniqueInput | Yes |
Delete zero or more Player
// Delete a few Player
const { count } = await prisma.player.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereInput | No |
Update zero or one Player
const { count } = await prisma.player.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyInput | Yes |
| where | PlayerWhereInput | No |
Create or update one Player
// Update or create a Player
const player = await prisma.player.upsert({
create: {
// ... data to create a Player
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Player we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWhereUniqueInput | Yes |
| create | PlayerCreateInput | PlayerUncheckedCreateInput | Yes |
| update | PlayerUpdateInput | PlayerUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| player | Player? |
|
No | - |
| playerId | String? |
|
No | - |
| game | Game? |
|
No | - |
| gameId | String? |
|
No | - |
| perks | PlayerRune? |
|
No | - |
| perksId | String? |
|
No | - |
| items | PlayerItem? |
|
No | - |
| itemsId | String? |
|
No | - |
| assists | Int? |
|
No | - |
| baronKills | Int? |
|
No | - |
| bountyLevel | Int? |
|
No | - |
| championExperience | Int? |
|
No | - |
| championLevel | Int? |
|
No | - |
| championId | Int? |
|
No | - |
| championName | String |
|
Yes | - |
| championTransform | Int? |
|
No | - |
| consumablesPurchased | Int? |
|
No | - |
| damageDealtToBuildings | Int? |
|
No | - |
| damageDealtToObjectives | Int? |
|
No | - |
| damageDealtToTurrets | Int? |
|
No | - |
| damageSelfMitigated | Int? |
|
No | - |
| deaths | Int? |
|
No | - |
| detectorWardsPlaced | Int? |
|
No | - |
| doubleKills | Int? |
|
No | - |
| dragonKills | Int? |
|
No | - |
| firstBlood | Boolean |
|
Yes | - |
| firstBloodAssist | Boolean |
|
Yes | - |
| firstTowerKill | Boolean |
|
Yes | - |
| firstTowerAssist | Boolean |
|
Yes | - |
| gameEndedInEarlySurrender | Boolean |
|
Yes | - |
| gameEndedInSurrender | Boolean |
|
Yes | - |
| goldEarned | Int? |
|
No | - |
| goldSpent | Int? |
|
No | - |
| individualPosition | String |
|
Yes | - |
| inhibitorKills | Int? |
|
No | - |
| inhibitorTakedowns | Int? |
|
No | - |
| inhibitorsLost | Int? |
|
No | - |
| item0 | Int? |
|
No | - |
| item1 | Int? |
|
No | - |
| item2 | Int? |
|
No | - |
| item3 | Int? |
|
No | - |
| item4 | Int? |
|
No | - |
| item5 | Int? |
|
No | - |
| item6 | Int? |
|
No | - |
| itemsPurchased | Int? |
|
No | - |
| killingSprees | Int? |
|
No | - |
| kills | Int? |
|
No | - |
| lane | String |
|
Yes | - |
| largestCriticalStrike | Int? |
|
No | - |
| largestKillingSpree | Int? |
|
No | - |
| largestMultiKill | Int? |
|
No | - |
| longestTimeSpentLiving | Int? |
|
No | - |
| magicDamageDealt | Int? |
|
No | - |
| magicDamageDealtToChampions | Int? |
|
No | - |
| magicDamageTaken | Int? |
|
No | - |
| neutralMinionsKilled | Int? |
|
No | - |
| nexusKills | Int? |
|
No | - |
| nexusLost | Int? |
|
No | - |
| nexusTakedowns | Int? |
|
No | - |
| objectivesStolen | Int? |
|
No | - |
| objectivesStolenAssists | Int? |
|
No | - |
| participantId | Int? |
|
No | - |
| pentaKills | Int? |
|
No | - |
| physicalDamageDealt | Int? |
|
No | - |
| physicalDamageDealtToChampions | Int? |
|
No | - |
| physicalDamageTaken | Int? |
|
No | - |
| quadraKills | Int? |
|
No | - |
| riotIdName | String |
|
Yes | - |
| riotIdTagline | String |
|
Yes | - |
| role | String |
|
Yes | - |
| sightWardsBoughtInGame | Int? |
|
No | - |
| spell1Casts | Int? |
|
No | - |
| spell2Casts | Int? |
|
No | - |
| spell3Casts | Int? |
|
No | - |
| spell4Casts | Int? |
|
No | - |
| summoner1Casts | Int? |
|
No | - |
| summoner1Id | Int? |
|
No | - |
| summoner2Casts | Int? |
|
No | - |
| summoner2Id | Int? |
|
No | - |
| summonerLevel | Int? |
|
No | - |
| summonerName | String |
|
Yes | - |
| teamEarlySurrendered | Boolean |
|
Yes | - |
| teamId | Int? |
|
No | - |
| teamPosition | String |
|
Yes | - |
| timeCCingOthers | Int? |
|
No | - |
| timePlayed | Int? |
|
No | - |
| totalDamageDealt | Int? |
|
No | - |
| totalDamageDealtToChampions | Int? |
|
No | - |
| totalDamageShieldedOnTeammates | Int? |
|
No | - |
| totalDamageTaken | Int? |
|
No | - |
| totalHeal | Int? |
|
No | - |
| totalHealsOnTeammates | Int? |
|
No | - |
| totalMinionsKilled | Int? |
|
No | - |
| totalTimeCCDealt | Int? |
|
No | - |
| totalTimeSpentDead | Int? |
|
No | - |
| totalUnitsHealed | Int? |
|
No | - |
| tripleKills | Int? |
|
No | - |
| trueDamageDealt | Int? |
|
No | - |
| trueDamageDealtToChampions | Int? |
|
No | - |
| trueDamageTaken | Int? |
|
No | - |
| turretsKilled | Int? |
|
No | - |
| turretTakedowns | Int? |
|
No | - |
| turretsLost | Int? |
|
No | - |
| unrealKills | Int? |
|
No | - |
| visionScore | Int? |
|
No | - |
| visionWardsBoughtInGame | Int? |
|
No | - |
| wardsKilled | Int? |
|
No | - |
| wardsPlaced | Int? |
|
No | - |
| win | Boolean |
|
Yes | - |
Find zero or one PlayerEndOfGameStat
// Get one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | Yes |
Find first PlayerEndOfGameStat
// Get one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereInput | No |
| orderBy | PlayerEndOfGameStatOrderByWithRelationInput[] | PlayerEndOfGameStatOrderByWithRelationInput | No |
| cursor | PlayerEndOfGameStatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerEndOfGameStatScalarFieldEnum[] | No |
Find zero or more PlayerEndOfGameStat
// Get all PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.findMany()
// Get first 10 PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereInput | No |
| orderBy | PlayerEndOfGameStatOrderByWithRelationInput[] | PlayerEndOfGameStatOrderByWithRelationInput | No |
| cursor | PlayerEndOfGameStatWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerEndOfGameStatScalarFieldEnum[] | No |
Create one PlayerEndOfGameStat
// Create one PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.create({
data: {
// ... data to create a PlayerEndOfGameStat
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerEndOfGameStatCreateInput | PlayerEndOfGameStatUncheckedCreateInput | Yes |
Delete one PlayerEndOfGameStat
// Delete one PlayerEndOfGameStat
const PlayerEndOfGameStat = await prisma.playerEndOfGameStat.delete({
where: {
// ... filter to delete one PlayerEndOfGameStat
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | Yes |
Update one PlayerEndOfGameStat
// Update one PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerEndOfGameStatUpdateInput | PlayerEndOfGameStatUncheckedUpdateInput | Yes |
| where | PlayerEndOfGameStatWhereUniqueInput | Yes |
Delete zero or more PlayerEndOfGameStat
// Delete a few PlayerEndOfGameStat
const { count } = await prisma.playerEndOfGameStat.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereInput | No |
Update zero or one PlayerEndOfGameStat
const { count } = await prisma.playerEndOfGameStat.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyInput | Yes |
| where | PlayerEndOfGameStatWhereInput | No |
Create or update one PlayerEndOfGameStat
// Update or create a PlayerEndOfGameStat
const playerEndOfGameStat = await prisma.playerEndOfGameStat.upsert({
create: {
// ... data to create a PlayerEndOfGameStat
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerEndOfGameStat we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | Yes |
| create | PlayerEndOfGameStatCreateInput | PlayerEndOfGameStatUncheckedCreateInput | Yes |
| update | PlayerEndOfGameStatUpdateInput | PlayerEndOfGameStatUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| slot | Int? |
|
No | - |
| itemId | Int? |
|
No | - |
| name | String |
|
Yes | - |
| playerEndOfGameStat | PlayerEndOfGameStat[] |
|
Yes | - |
Find zero or one PlayerItem
// Get one PlayerItem
const playerItem = await prisma.playerItem.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereUniqueInput | Yes |
Find first PlayerItem
// Get one PlayerItem
const playerItem = await prisma.playerItem.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereInput | No |
| orderBy | PlayerItemOrderByWithRelationInput[] | PlayerItemOrderByWithRelationInput | No |
| cursor | PlayerItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerItemScalarFieldEnum[] | No |
Find zero or more PlayerItem
// Get all PlayerItem
const PlayerItem = await prisma.playerItem.findMany()
// Get first 10 PlayerItem
const PlayerItem = await prisma.playerItem.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereInput | No |
| orderBy | PlayerItemOrderByWithRelationInput[] | PlayerItemOrderByWithRelationInput | No |
| cursor | PlayerItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerItemScalarFieldEnum[] | No |
Create one PlayerItem
// Create one PlayerItem
const PlayerItem = await prisma.playerItem.create({
data: {
// ... data to create a PlayerItem
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemCreateInput | PlayerItemUncheckedCreateInput | Yes |
Delete one PlayerItem
// Delete one PlayerItem
const PlayerItem = await prisma.playerItem.delete({
where: {
// ... filter to delete one PlayerItem
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereUniqueInput | Yes |
Update one PlayerItem
// Update one PlayerItem
const playerItem = await prisma.playerItem.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemUpdateInput | PlayerItemUncheckedUpdateInput | Yes |
| where | PlayerItemWhereUniqueInput | Yes |
Delete zero or more PlayerItem
// Delete a few PlayerItem
const { count } = await prisma.playerItem.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereInput | No |
Update zero or one PlayerItem
const { count } = await prisma.playerItem.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemUpdateManyMutationInput | PlayerItemUncheckedUpdateManyInput | Yes |
| where | PlayerItemWhereInput | No |
Create or update one PlayerItem
// Update or create a PlayerItem
const playerItem = await prisma.playerItem.upsert({
create: {
// ... data to create a PlayerItem
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerItem we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemWhereUniqueInput | Yes |
| create | PlayerItemCreateInput | PlayerItemUncheckedCreateInput | Yes |
| update | PlayerItemUpdateInput | PlayerItemUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| player | Player[] |
|
Yes | - |
| type | String |
|
Yes | - |
| itemId | Int? |
|
No | - |
| name | String |
|
Yes | - |
| undoId | Int? |
|
No | - |
Find zero or one PlayerItemEvent
// Get one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | Yes |
Find first PlayerItemEvent
// Get one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereInput | No |
| orderBy | PlayerItemEventOrderByWithRelationInput[] | PlayerItemEventOrderByWithRelationInput | No |
| cursor | PlayerItemEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerItemEventScalarFieldEnum[] | No |
Find zero or more PlayerItemEvent
// Get all PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.findMany()
// Get first 10 PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereInput | No |
| orderBy | PlayerItemEventOrderByWithRelationInput[] | PlayerItemEventOrderByWithRelationInput | No |
| cursor | PlayerItemEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerItemEventScalarFieldEnum[] | No |
Create one PlayerItemEvent
// Create one PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.create({
data: {
// ... data to create a PlayerItemEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemEventCreateInput | PlayerItemEventUncheckedCreateInput | Yes |
Delete one PlayerItemEvent
// Delete one PlayerItemEvent
const PlayerItemEvent = await prisma.playerItemEvent.delete({
where: {
// ... filter to delete one PlayerItemEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | Yes |
Update one PlayerItemEvent
// Update one PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemEventUpdateInput | PlayerItemEventUncheckedUpdateInput | Yes |
| where | PlayerItemEventWhereUniqueInput | Yes |
Delete zero or more PlayerItemEvent
// Delete a few PlayerItemEvent
const { count } = await prisma.playerItemEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereInput | No |
Update zero or one PlayerItemEvent
const { count } = await prisma.playerItemEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerItemEventUpdateManyMutationInput | PlayerItemEventUncheckedUpdateManyInput | Yes |
| where | PlayerItemEventWhereInput | No |
Create or update one PlayerItemEvent
// Update or create a PlayerItemEvent
const playerItemEvent = await prisma.playerItemEvent.upsert({
create: {
// ... data to create a PlayerItemEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerItemEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | Yes |
| create | PlayerItemEventCreateInput | PlayerItemEventUncheckedCreateInput | Yes |
| update | PlayerItemEventUpdateInput | PlayerItemEventUncheckedUpdateInput | Yes |
Find zero or one PlayerKill
// Get one PlayerKill
const playerKill = await prisma.playerKill.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereUniqueInput | Yes |
Find first PlayerKill
// Get one PlayerKill
const playerKill = await prisma.playerKill.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereInput | No |
| orderBy | PlayerKillOrderByWithRelationInput[] | PlayerKillOrderByWithRelationInput | No |
| cursor | PlayerKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerKillScalarFieldEnum[] | No |
Find zero or more PlayerKill
// Get all PlayerKill
const PlayerKill = await prisma.playerKill.findMany()
// Get first 10 PlayerKill
const PlayerKill = await prisma.playerKill.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereInput | No |
| orderBy | PlayerKillOrderByWithRelationInput[] | PlayerKillOrderByWithRelationInput | No |
| cursor | PlayerKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerKillScalarFieldEnum[] | No |
Create one PlayerKill
// Create one PlayerKill
const PlayerKill = await prisma.playerKill.create({
data: {
// ... data to create a PlayerKill
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerKillCreateInput | PlayerKillUncheckedCreateInput | Yes |
Delete one PlayerKill
// Delete one PlayerKill
const PlayerKill = await prisma.playerKill.delete({
where: {
// ... filter to delete one PlayerKill
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereUniqueInput | Yes |
Update one PlayerKill
// Update one PlayerKill
const playerKill = await prisma.playerKill.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerKillUpdateInput | PlayerKillUncheckedUpdateInput | Yes |
| where | PlayerKillWhereUniqueInput | Yes |
Delete zero or more PlayerKill
// Delete a few PlayerKill
const { count } = await prisma.playerKill.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereInput | No |
Update zero or one PlayerKill
const { count } = await prisma.playerKill.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyInput | Yes |
| where | PlayerKillWhereInput | No |
Create or update one PlayerKill
// Update or create a PlayerKill
const playerKill = await prisma.playerKill.upsert({
create: {
// ... data to create a PlayerKill
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerKill we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerKillWhereUniqueInput | Yes |
| create | PlayerKillCreateInput | PlayerKillUncheckedCreateInput | Yes |
| update | PlayerKillUpdateInput | PlayerKillUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| playerEndOfGameStat | PlayerEndOfGameStat? |
|
No | - |
| runeStyle | RuneStyle[] |
|
Yes | - |
| defense | Int? |
|
No | - |
| flex | Int? |
|
No | - |
| offense | Int? |
|
No | - |
Find zero or one PlayerRune
// Get one PlayerRune
const playerRune = await prisma.playerRune.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereUniqueInput | Yes |
Find first PlayerRune
// Get one PlayerRune
const playerRune = await prisma.playerRune.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereInput | No |
| orderBy | PlayerRuneOrderByWithRelationInput[] | PlayerRuneOrderByWithRelationInput | No |
| cursor | PlayerRuneWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerRuneScalarFieldEnum[] | No |
Find zero or more PlayerRune
// Get all PlayerRune
const PlayerRune = await prisma.playerRune.findMany()
// Get first 10 PlayerRune
const PlayerRune = await prisma.playerRune.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereInput | No |
| orderBy | PlayerRuneOrderByWithRelationInput[] | PlayerRuneOrderByWithRelationInput | No |
| cursor | PlayerRuneWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerRuneScalarFieldEnum[] | No |
Create one PlayerRune
// Create one PlayerRune
const PlayerRune = await prisma.playerRune.create({
data: {
// ... data to create a PlayerRune
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerRuneCreateInput | PlayerRuneUncheckedCreateInput | Yes |
Delete one PlayerRune
// Delete one PlayerRune
const PlayerRune = await prisma.playerRune.delete({
where: {
// ... filter to delete one PlayerRune
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereUniqueInput | Yes |
Update one PlayerRune
// Update one PlayerRune
const playerRune = await prisma.playerRune.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerRuneUpdateInput | PlayerRuneUncheckedUpdateInput | Yes |
| where | PlayerRuneWhereUniqueInput | Yes |
Delete zero or more PlayerRune
// Delete a few PlayerRune
const { count } = await prisma.playerRune.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereInput | No |
Update zero or one PlayerRune
const { count } = await prisma.playerRune.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerRuneUpdateManyMutationInput | PlayerRuneUncheckedUpdateManyInput | Yes |
| where | PlayerRuneWhereInput | No |
Create or update one PlayerRune
// Update or create a PlayerRune
const playerRune = await prisma.playerRune.upsert({
create: {
// ... data to create a PlayerRune
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerRune we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerRuneWhereUniqueInput | Yes |
| create | PlayerRuneCreateInput | PlayerRuneUncheckedCreateInput | Yes |
| update | PlayerRuneUpdateInput | PlayerRuneUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| player | Player[] |
|
Yes | - |
| type | String |
|
Yes | - |
| slot | Int? |
|
No | - |
Find zero or one PlayerSkillLevelUpEvent
// Get one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereUniqueInput | Yes |
Find first PlayerSkillLevelUpEvent
// Get one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereInput | No |
| orderBy | PlayerSkillLevelUpEventOrderByWithRelationInput[] | PlayerSkillLevelUpEventOrderByWithRelationInput | No |
| cursor | PlayerSkillLevelUpEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerSkillLevelUpEventScalarFieldEnum[] | No |
Find zero or more PlayerSkillLevelUpEvent
// Get all PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findMany()
// Get first 10 PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereInput | No |
| orderBy | PlayerSkillLevelUpEventOrderByWithRelationInput[] | PlayerSkillLevelUpEventOrderByWithRelationInput | No |
| cursor | PlayerSkillLevelUpEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerSkillLevelUpEventScalarFieldEnum[] | No |
Create one PlayerSkillLevelUpEvent
// Create one PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.create({
data: {
// ... data to create a PlayerSkillLevelUpEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSkillLevelUpEventCreateInput | PlayerSkillLevelUpEventUncheckedCreateInput | Yes |
Delete one PlayerSkillLevelUpEvent
// Delete one PlayerSkillLevelUpEvent
const PlayerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.delete({
where: {
// ... filter to delete one PlayerSkillLevelUpEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereUniqueInput | Yes |
Update one PlayerSkillLevelUpEvent
// Update one PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSkillLevelUpEventUpdateInput | PlayerSkillLevelUpEventUncheckedUpdateInput | Yes |
| where | PlayerSkillLevelUpEventWhereUniqueInput | Yes |
Delete zero or more PlayerSkillLevelUpEvent
// Delete a few PlayerSkillLevelUpEvent
const { count } = await prisma.playerSkillLevelUpEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereInput | No |
Update zero or one PlayerSkillLevelUpEvent
const { count } = await prisma.playerSkillLevelUpEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSkillLevelUpEventUpdateManyMutationInput | PlayerSkillLevelUpEventUncheckedUpdateManyInput | Yes |
| where | PlayerSkillLevelUpEventWhereInput | No |
Create or update one PlayerSkillLevelUpEvent
// Update or create a PlayerSkillLevelUpEvent
const playerSkillLevelUpEvent = await prisma.playerSkillLevelUpEvent.upsert({
create: {
// ... data to create a PlayerSkillLevelUpEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerSkillLevelUpEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereUniqueInput | Yes |
| create | PlayerSkillLevelUpEventCreateInput | PlayerSkillLevelUpEventUncheckedCreateInput | Yes |
| update | PlayerSkillLevelUpEventUpdateInput | PlayerSkillLevelUpEventUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| timestamp | Float? |
|
No | - |
| currentGold | Int? |
|
No | - |
| totalGold | Int? |
|
No | - |
| totalGoldDiff | Int? |
|
No | - |
| xp | Int? |
|
No | - |
| xpDiff | Int? |
|
No | - |
| level | Int? |
|
No | - |
| cs | Int? |
|
No | - |
| csDiff | Int? |
|
No | - |
| monstersKilled | Int? |
|
No | - |
| monstersKilledDiff | Int? |
|
No | - |
| position | Position[] |
|
Yes | - |
| player | Player[] |
|
Yes | - |
Find zero or one PlayerSnapshot
// Get one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | Yes |
Find first PlayerSnapshot
// Get one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereInput | No |
| orderBy | PlayerSnapshotOrderByWithRelationInput[] | PlayerSnapshotOrderByWithRelationInput | No |
| cursor | PlayerSnapshotWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerSnapshotScalarFieldEnum[] | No |
Find zero or more PlayerSnapshot
// Get all PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.findMany()
// Get first 10 PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereInput | No |
| orderBy | PlayerSnapshotOrderByWithRelationInput[] | PlayerSnapshotOrderByWithRelationInput | No |
| cursor | PlayerSnapshotWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerSnapshotScalarFieldEnum[] | No |
Create one PlayerSnapshot
// Create one PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.create({
data: {
// ... data to create a PlayerSnapshot
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSnapshotCreateInput | PlayerSnapshotUncheckedCreateInput | Yes |
Delete one PlayerSnapshot
// Delete one PlayerSnapshot
const PlayerSnapshot = await prisma.playerSnapshot.delete({
where: {
// ... filter to delete one PlayerSnapshot
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | Yes |
Update one PlayerSnapshot
// Update one PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSnapshotUpdateInput | PlayerSnapshotUncheckedUpdateInput | Yes |
| where | PlayerSnapshotWhereUniqueInput | Yes |
Delete zero or more PlayerSnapshot
// Delete a few PlayerSnapshot
const { count } = await prisma.playerSnapshot.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereInput | No |
Update zero or one PlayerSnapshot
const { count } = await prisma.playerSnapshot.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyInput | Yes |
| where | PlayerSnapshotWhereInput | No |
Create or update one PlayerSnapshot
// Update or create a PlayerSnapshot
const playerSnapshot = await prisma.playerSnapshot.upsert({
create: {
// ... data to create a PlayerSnapshot
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerSnapshot we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | Yes |
| create | PlayerSnapshotCreateInput | PlayerSnapshotUncheckedCreateInput | Yes |
| update | PlayerSnapshotUpdateInput | PlayerSnapshotUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| player | Player[] |
|
Yes | - |
| type | String |
|
Yes | - |
| wardType | PlayerWardEventWardTypeType? |
|
No | - |
Find zero or one PlayerWardEvent
// Get one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | Yes |
Find first PlayerWardEvent
// Get one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereInput | No |
| orderBy | PlayerWardEventOrderByWithRelationInput[] | PlayerWardEventOrderByWithRelationInput | No |
| cursor | PlayerWardEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerWardEventScalarFieldEnum[] | No |
Find zero or more PlayerWardEvent
// Get all PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.findMany()
// Get first 10 PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereInput | No |
| orderBy | PlayerWardEventOrderByWithRelationInput[] | PlayerWardEventOrderByWithRelationInput | No |
| cursor | PlayerWardEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PlayerWardEventScalarFieldEnum[] | No |
Create one PlayerWardEvent
// Create one PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.create({
data: {
// ... data to create a PlayerWardEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerWardEventCreateInput | PlayerWardEventUncheckedCreateInput | Yes |
Delete one PlayerWardEvent
// Delete one PlayerWardEvent
const PlayerWardEvent = await prisma.playerWardEvent.delete({
where: {
// ... filter to delete one PlayerWardEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | Yes |
Update one PlayerWardEvent
// Update one PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerWardEventUpdateInput | PlayerWardEventUncheckedUpdateInput | Yes |
| where | PlayerWardEventWhereUniqueInput | Yes |
Delete zero or more PlayerWardEvent
// Delete a few PlayerWardEvent
const { count } = await prisma.playerWardEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereInput | No |
Update zero or one PlayerWardEvent
const { count } = await prisma.playerWardEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PlayerWardEventUpdateManyMutationInput | PlayerWardEventUncheckedUpdateManyInput | Yes |
| where | PlayerWardEventWhereInput | No |
Create or update one PlayerWardEvent
// Update or create a PlayerWardEvent
const playerWardEvent = await prisma.playerWardEvent.upsert({
create: {
// ... data to create a PlayerWardEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PlayerWardEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | Yes |
| create | PlayerWardEventCreateInput | PlayerWardEventUncheckedCreateInput | Yes |
| update | PlayerWardEventUpdateInput | PlayerWardEventUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| event | Event[] |
|
Yes | - |
| x | Int? |
|
No | - |
| y | Int? |
|
No | - |
| playerSnapshot | PlayerSnapshot[] |
|
Yes | - |
Find zero or one Position
// Get one Position
const position = await prisma.position.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PositionWhereUniqueInput | Yes |
Find first Position
// Get one Position
const position = await prisma.position.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PositionWhereInput | No |
| orderBy | PositionOrderByWithRelationInput[] | PositionOrderByWithRelationInput | No |
| cursor | PositionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PositionScalarFieldEnum[] | No |
Find zero or more Position
// Get all Position
const Position = await prisma.position.findMany()
// Get first 10 Position
const Position = await prisma.position.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PositionWhereInput | No |
| orderBy | PositionOrderByWithRelationInput[] | PositionOrderByWithRelationInput | No |
| cursor | PositionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PositionScalarFieldEnum[] | No |
Create one Position
// Create one Position
const Position = await prisma.position.create({
data: {
// ... data to create a Position
}
})
| Name | Type | Required |
|---|---|---|
| data | PositionCreateInput | PositionUncheckedCreateInput | Yes |
Delete one Position
// Delete one Position
const Position = await prisma.position.delete({
where: {
// ... filter to delete one Position
}
})
| Name | Type | Required |
|---|---|---|
| where | PositionWhereUniqueInput | Yes |
Update one Position
// Update one Position
const position = await prisma.position.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PositionUpdateInput | PositionUncheckedUpdateInput | Yes |
| where | PositionWhereUniqueInput | Yes |
Delete zero or more Position
// Delete a few Position
const { count } = await prisma.position.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PositionWhereInput | No |
Update zero or one Position
const { count } = await prisma.position.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PositionUpdateManyMutationInput | PositionUncheckedUpdateManyInput | Yes |
| where | PositionWhereInput | No |
Create or update one Position
// Update or create a Position
const position = await prisma.position.upsert({
create: {
// ... data to create a Position
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Position we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PositionWhereUniqueInput | Yes |
| create | PositionCreateInput | PositionUncheckedCreateInput | Yes |
| update | PositionUpdateInput | PositionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| update | Boolean |
|
Yes | - |
| player | Player? |
|
No | - |
| lastUpdate | DateTime |
|
Yes | - |
| kills | Int? |
|
No | - |
| deaths | Int? |
|
No | - |
| assists | Int? |
|
No | - |
| kda | String |
|
Yes | - |
| winRate | String |
|
Yes | - |
| csPerMinute | String |
|
Yes | - |
| damagePerMinute | String |
|
Yes | - |
| killsPerMinute | String |
|
Yes | - |
| goldPerMinute | String |
|
Yes | - |
| averageGameTime | String |
|
Yes | - |
| averageTimeSpentDead | String |
|
Yes | - |
| totalGameTime | String |
|
Yes | - |
| activity | Activity[] |
|
Yes | - |
| championWinrate | ChampionWinrate[] |
|
Yes | - |
| duos | Duo[] |
|
Yes | - |
Find zero or one Profile
// Get one Profile
const profile = await prisma.profile.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
Find first Profile
// Get one Profile
const profile = await prisma.profile.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
| orderBy | ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput | No |
| cursor | ProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProfileScalarFieldEnum[] | No |
Find zero or more Profile
// Get all Profile
const Profile = await prisma.profile.findMany()
// Get first 10 Profile
const Profile = await prisma.profile.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
| orderBy | ProfileOrderByWithRelationInput[] | ProfileOrderByWithRelationInput | No |
| cursor | ProfileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ProfileScalarFieldEnum[] | No |
Create one Profile
// Create one Profile
const Profile = await prisma.profile.create({
data: {
// ... data to create a Profile
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileCreateInput | ProfileUncheckedCreateInput | Yes |
Delete one Profile
// Delete one Profile
const Profile = await prisma.profile.delete({
where: {
// ... filter to delete one Profile
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
Update one Profile
// Update one Profile
const profile = await prisma.profile.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileUpdateInput | ProfileUncheckedUpdateInput | Yes |
| where | ProfileWhereUniqueInput | Yes |
Delete zero or more Profile
// Delete a few Profile
const { count } = await prisma.profile.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereInput | No |
Update zero or one Profile
const { count } = await prisma.profile.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ProfileUpdateManyMutationInput | ProfileUncheckedUpdateManyInput | Yes |
| where | ProfileWhereInput | No |
Create or update one Profile
// Update or create a Profile
const profile = await prisma.profile.upsert({
create: {
// ... data to create a Profile
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Profile we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ProfileWhereUniqueInput | Yes |
| create | ProfileCreateInput | ProfileUncheckedCreateInput | Yes |
| update | ProfileUpdateInput | ProfileUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| identifier | String |
|
Yes | - |
| type | String |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
| priority | Boolean |
|
Yes | - |
| retrieved | Boolean |
|
Yes | - |
Find zero or one SeedIdentifier
// Get one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereUniqueInput | Yes |
Find first SeedIdentifier
// Get one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereInput | No |
| orderBy | SeedIdentifierOrderByWithRelationInput[] | SeedIdentifierOrderByWithRelationInput | No |
| cursor | SeedIdentifierWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SeedIdentifierScalarFieldEnum[] | No |
Find zero or more SeedIdentifier
// Get all SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.findMany()
// Get first 10 SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereInput | No |
| orderBy | SeedIdentifierOrderByWithRelationInput[] | SeedIdentifierOrderByWithRelationInput | No |
| cursor | SeedIdentifierWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SeedIdentifierScalarFieldEnum[] | No |
Create one SeedIdentifier
// Create one SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.create({
data: {
// ... data to create a SeedIdentifier
}
})
| Name | Type | Required |
|---|---|---|
| data | SeedIdentifierCreateInput | SeedIdentifierUncheckedCreateInput | Yes |
Delete one SeedIdentifier
// Delete one SeedIdentifier
const SeedIdentifier = await prisma.seedIdentifier.delete({
where: {
// ... filter to delete one SeedIdentifier
}
})
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereUniqueInput | Yes |
Update one SeedIdentifier
// Update one SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SeedIdentifierUpdateInput | SeedIdentifierUncheckedUpdateInput | Yes |
| where | SeedIdentifierWhereUniqueInput | Yes |
Delete zero or more SeedIdentifier
// Delete a few SeedIdentifier
const { count } = await prisma.seedIdentifier.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereInput | No |
Update zero or one SeedIdentifier
const { count } = await prisma.seedIdentifier.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SeedIdentifierUpdateManyMutationInput | SeedIdentifierUncheckedUpdateManyInput | Yes |
| where | SeedIdentifierWhereInput | No |
Create or update one SeedIdentifier
// Update or create a SeedIdentifier
const seedIdentifier = await prisma.seedIdentifier.upsert({
create: {
// ... data to create a SeedIdentifier
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SeedIdentifier we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SeedIdentifierWhereUniqueInput | Yes |
| create | SeedIdentifierCreateInput | SeedIdentifierUncheckedCreateInput | Yes |
| update | SeedIdentifierUpdateInput | SeedIdentifierUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| game | Game[] |
|
Yes | - |
| api | String |
|
Yes | - |
Find zero or one Source
// Get one Source
const source = await prisma.source.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SourceWhereUniqueInput | Yes |
Find first Source
// Get one Source
const source = await prisma.source.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SourceWhereInput | No |
| orderBy | SourceOrderByWithRelationInput[] | SourceOrderByWithRelationInput | No |
| cursor | SourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SourceScalarFieldEnum[] | No |
Find zero or more Source
// Get all Source
const Source = await prisma.source.findMany()
// Get first 10 Source
const Source = await prisma.source.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SourceWhereInput | No |
| orderBy | SourceOrderByWithRelationInput[] | SourceOrderByWithRelationInput | No |
| cursor | SourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SourceScalarFieldEnum[] | No |
Create one Source
// Create one Source
const Source = await prisma.source.create({
data: {
// ... data to create a Source
}
})
| Name | Type | Required |
|---|---|---|
| data | SourceCreateInput | SourceUncheckedCreateInput | Yes |
Delete one Source
// Delete one Source
const Source = await prisma.source.delete({
where: {
// ... filter to delete one Source
}
})
| Name | Type | Required |
|---|---|---|
| where | SourceWhereUniqueInput | Yes |
Update one Source
// Update one Source
const source = await prisma.source.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SourceUpdateInput | SourceUncheckedUpdateInput | Yes |
| where | SourceWhereUniqueInput | Yes |
Delete zero or more Source
// Delete a few Source
const { count } = await prisma.source.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SourceWhereInput | No |
Update zero or one Source
const { count } = await prisma.source.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SourceUpdateManyMutationInput | SourceUncheckedUpdateManyInput | Yes |
| where | SourceWhereInput | No |
Create or update one Source
// Update or create a Source
const source = await prisma.source.upsert({
create: {
// ... data to create a Source
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Source we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SourceWhereUniqueInput | Yes |
| create | SourceCreateInput | SourceUncheckedCreateInput | Yes |
| update | SourceUpdateInput | SourceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| pickBan | PickBan[] |
|
Yes | - |
| game | Game? |
|
No | - |
| gameId | String? |
|
No | - |
| players | Player[] |
|
Yes | - |
| objectives | Objective[] |
|
Yes | - |
| teamId | Int? |
|
No | - |
| teamMatchId | String |
|
Yes | - |
| win | Boolean |
|
Yes | - |
| from_Game_blueTeam | Game[] |
|
Yes | - |
| from_Game_redTeam | Game[] |
|
Yes | - |
Find zero or one Team
// Get one Team
const team = await prisma.team.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Find first Team
// Get one Team
const team = await prisma.team.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum[] | No |
Find zero or more Team
// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum[] | No |
Create one Team
// Create one Team
const Team = await prisma.team.create({
data: {
// ... data to create a Team
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamCreateInput | TeamUncheckedCreateInput | Yes |
Delete one Team
// Delete one Team
const Team = await prisma.team.delete({
where: {
// ... filter to delete one Team
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Update one Team
// Update one Team
const team = await prisma.team.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| where | TeamWhereUniqueInput | Yes |
Delete zero or more Team
// Delete a few Team
const { count } = await prisma.team.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
Update zero or one Team
const { count } = await prisma.team.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput | Yes |
| where | TeamWhereInput | No |
Create or update one Team
// Update or create a Team
const team = await prisma.team.upsert({
create: {
// ... data to create a Team
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Team we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
| create | TeamCreateInput | TeamUncheckedCreateInput | Yes |
| update | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| killer | Player[] |
|
Yes | - |
| type | String |
|
Yes | - |
| lane | String |
|
Yes | - |
| side | String |
|
Yes | - |
| towerLocation | String |
|
Yes | - |
Find zero or one TeamBuildingKill
// Get one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | Yes |
Find first TeamBuildingKill
// Get one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereInput | No |
| orderBy | TeamBuildingKillOrderByWithRelationInput[] | TeamBuildingKillOrderByWithRelationInput | No |
| cursor | TeamBuildingKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamBuildingKillScalarFieldEnum[] | No |
Find zero or more TeamBuildingKill
// Get all TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.findMany()
// Get first 10 TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereInput | No |
| orderBy | TeamBuildingKillOrderByWithRelationInput[] | TeamBuildingKillOrderByWithRelationInput | No |
| cursor | TeamBuildingKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamBuildingKillScalarFieldEnum[] | No |
Create one TeamBuildingKill
// Create one TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.create({
data: {
// ... data to create a TeamBuildingKill
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamBuildingKillCreateInput | TeamBuildingKillUncheckedCreateInput | Yes |
Delete one TeamBuildingKill
// Delete one TeamBuildingKill
const TeamBuildingKill = await prisma.teamBuildingKill.delete({
where: {
// ... filter to delete one TeamBuildingKill
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | Yes |
Update one TeamBuildingKill
// Update one TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamBuildingKillUpdateInput | TeamBuildingKillUncheckedUpdateInput | Yes |
| where | TeamBuildingKillWhereUniqueInput | Yes |
Delete zero or more TeamBuildingKill
// Delete a few TeamBuildingKill
const { count } = await prisma.teamBuildingKill.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereInput | No |
Update zero or one TeamBuildingKill
const { count } = await prisma.teamBuildingKill.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamBuildingKillUpdateManyMutationInput | TeamBuildingKillUncheckedUpdateManyInput | Yes |
| where | TeamBuildingKillWhereInput | No |
Create or update one TeamBuildingKill
// Update or create a TeamBuildingKill
const teamBuildingKill = await prisma.teamBuildingKill.upsert({
create: {
// ... data to create a TeamBuildingKill
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the TeamBuildingKill we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | Yes |
| create | TeamBuildingKillCreateInput | TeamBuildingKillUncheckedCreateInput | Yes |
| update | TeamBuildingKillUpdateInput | TeamBuildingKillUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| killer | Player[] |
|
Yes | - |
| type | String |
|
Yes | - |
| subType | String |
|
Yes | - |
Find zero or one TeamMonsterKill
// Get one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | Yes |
Find first TeamMonsterKill
// Get one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereInput | No |
| orderBy | TeamMonsterKillOrderByWithRelationInput[] | TeamMonsterKillOrderByWithRelationInput | No |
| cursor | TeamMonsterKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamMonsterKillScalarFieldEnum[] | No |
Find zero or more TeamMonsterKill
// Get all TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.findMany()
// Get first 10 TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereInput | No |
| orderBy | TeamMonsterKillOrderByWithRelationInput[] | TeamMonsterKillOrderByWithRelationInput | No |
| cursor | TeamMonsterKillWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamMonsterKillScalarFieldEnum[] | No |
Create one TeamMonsterKill
// Create one TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.create({
data: {
// ... data to create a TeamMonsterKill
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamMonsterKillCreateInput | TeamMonsterKillUncheckedCreateInput | Yes |
Delete one TeamMonsterKill
// Delete one TeamMonsterKill
const TeamMonsterKill = await prisma.teamMonsterKill.delete({
where: {
// ... filter to delete one TeamMonsterKill
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | Yes |
Update one TeamMonsterKill
// Update one TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamMonsterKillUpdateInput | TeamMonsterKillUncheckedUpdateInput | Yes |
| where | TeamMonsterKillWhereUniqueInput | Yes |
Delete zero or more TeamMonsterKill
// Delete a few TeamMonsterKill
const { count } = await prisma.teamMonsterKill.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereInput | No |
Update zero or one TeamMonsterKill
const { count } = await prisma.teamMonsterKill.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamMonsterKillUpdateManyMutationInput | TeamMonsterKillUncheckedUpdateManyInput | Yes |
| where | TeamMonsterKillWhereInput | No |
Create or update one TeamMonsterKill
// Update or create a TeamMonsterKill
const teamMonsterKill = await prisma.teamMonsterKill.upsert({
create: {
// ... data to create a TeamMonsterKill
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the TeamMonsterKill we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | Yes |
| create | TeamMonsterKillCreateInput | TeamMonsterKillUncheckedCreateInput | Yes |
| update | TeamMonsterKillUpdateInput | TeamMonsterKillUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| runeStyle | RuneStyle? |
|
No | - |
| runeStyleId | String? |
|
No | - |
| perk | Int? |
|
No | - |
| var1 | Int? |
|
No | - |
| var2 | Int? |
|
No | - |
| var3 | Int? |
|
No | - |
Find zero or one RuneSelection
// Get one RuneSelection
const runeSelection = await prisma.runeSelection.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | Yes |
Find first RuneSelection
// Get one RuneSelection
const runeSelection = await prisma.runeSelection.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereInput | No |
| orderBy | RuneSelectionOrderByWithRelationInput[] | RuneSelectionOrderByWithRelationInput | No |
| cursor | RuneSelectionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RuneSelectionScalarFieldEnum[] | No |
Find zero or more RuneSelection
// Get all RuneSelection
const RuneSelection = await prisma.runeSelection.findMany()
// Get first 10 RuneSelection
const RuneSelection = await prisma.runeSelection.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereInput | No |
| orderBy | RuneSelectionOrderByWithRelationInput[] | RuneSelectionOrderByWithRelationInput | No |
| cursor | RuneSelectionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RuneSelectionScalarFieldEnum[] | No |
Create one RuneSelection
// Create one RuneSelection
const RuneSelection = await prisma.runeSelection.create({
data: {
// ... data to create a RuneSelection
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneSelectionCreateInput | RuneSelectionUncheckedCreateInput | Yes |
Delete one RuneSelection
// Delete one RuneSelection
const RuneSelection = await prisma.runeSelection.delete({
where: {
// ... filter to delete one RuneSelection
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | Yes |
Update one RuneSelection
// Update one RuneSelection
const runeSelection = await prisma.runeSelection.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneSelectionUpdateInput | RuneSelectionUncheckedUpdateInput | Yes |
| where | RuneSelectionWhereUniqueInput | Yes |
Delete zero or more RuneSelection
// Delete a few RuneSelection
const { count } = await prisma.runeSelection.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereInput | No |
Update zero or one RuneSelection
const { count } = await prisma.runeSelection.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneSelectionUpdateManyMutationInput | RuneSelectionUncheckedUpdateManyInput | Yes |
| where | RuneSelectionWhereInput | No |
Create or update one RuneSelection
// Update or create a RuneSelection
const runeSelection = await prisma.runeSelection.upsert({
create: {
// ... data to create a RuneSelection
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RuneSelection we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | Yes |
| create | RuneSelectionCreateInput | RuneSelectionUncheckedCreateInput | Yes |
| update | RuneSelectionUpdateInput | RuneSelectionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| playerRunes | PlayerRune? |
|
No | - |
| playerRunesId | String? |
|
No | - |
| selection | RuneSelection[] |
|
Yes | - |
| description | String |
|
Yes | - |
| style | Int? |
|
No | - |
Find zero or one RuneStyle
// Get one RuneStyle
const runeStyle = await prisma.runeStyle.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereUniqueInput | Yes |
Find first RuneStyle
// Get one RuneStyle
const runeStyle = await prisma.runeStyle.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereInput | No |
| orderBy | RuneStyleOrderByWithRelationInput[] | RuneStyleOrderByWithRelationInput | No |
| cursor | RuneStyleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RuneStyleScalarFieldEnum[] | No |
Find zero or more RuneStyle
// Get all RuneStyle
const RuneStyle = await prisma.runeStyle.findMany()
// Get first 10 RuneStyle
const RuneStyle = await prisma.runeStyle.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereInput | No |
| orderBy | RuneStyleOrderByWithRelationInput[] | RuneStyleOrderByWithRelationInput | No |
| cursor | RuneStyleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RuneStyleScalarFieldEnum[] | No |
Create one RuneStyle
// Create one RuneStyle
const RuneStyle = await prisma.runeStyle.create({
data: {
// ... data to create a RuneStyle
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneStyleCreateInput | RuneStyleUncheckedCreateInput | Yes |
Delete one RuneStyle
// Delete one RuneStyle
const RuneStyle = await prisma.runeStyle.delete({
where: {
// ... filter to delete one RuneStyle
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereUniqueInput | Yes |
Update one RuneStyle
// Update one RuneStyle
const runeStyle = await prisma.runeStyle.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneStyleUpdateInput | RuneStyleUncheckedUpdateInput | Yes |
| where | RuneStyleWhereUniqueInput | Yes |
Delete zero or more RuneStyle
// Delete a few RuneStyle
const { count } = await prisma.runeStyle.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereInput | No |
Update zero or one RuneStyle
const { count } = await prisma.runeStyle.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RuneStyleUpdateManyMutationInput | RuneStyleUncheckedUpdateManyInput | Yes |
| where | RuneStyleWhereInput | No |
Create or update one RuneStyle
// Update or create a RuneStyle
const runeStyle = await prisma.runeStyle.upsert({
create: {
// ... data to create a RuneStyle
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RuneStyle we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RuneStyleWhereUniqueInput | Yes |
| create | RuneStyleCreateInput | RuneStyleUncheckedCreateInput | Yes |
| update | RuneStyleUpdateInput | RuneStyleUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ActivityWhereInput | ActivityWhereInput[] | No |
| OR | ActivityWhereInput[] | No |
| NOT | ActivityWhereInput | ActivityWhereInput[] | No |
| id | StringFilter | String | No |
| profile | ProfileRelationFilter | ProfileWhereInput | Null | Yes |
| profileId | StringNullableFilter | String | Null | Yes |
| month | IntNullableFilter | Int | Null | Yes |
| year | IntNullableFilter | Int | Null | Yes |
| day | IntNullableFilter | Int | Null | Yes |
| gamesPlayed | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profile | ProfileOrderByWithRelationInput | No |
| profileId | SortOrder | No |
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| _count | ActivityCountOrderByAggregateInput | No |
| _avg | ActivityAvgOrderByAggregateInput | No |
| _max | ActivityMaxOrderByAggregateInput | No |
| _min | ActivityMinOrderByAggregateInput | No |
| _sum | ActivitySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ActivityScalarWhereWithAggregatesInput | ActivityScalarWhereWithAggregatesInput[] | No |
| OR | ActivityScalarWhereWithAggregatesInput[] | No |
| NOT | ActivityScalarWhereWithAggregatesInput | ActivityScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| profileId | StringNullableWithAggregatesFilter | String | Null | Yes |
| month | IntNullableWithAggregatesFilter | Int | Null | Yes |
| year | IntNullableWithAggregatesFilter | Int | Null | Yes |
| day | IntNullableWithAggregatesFilter | Int | Null | Yes |
| gamesPlayed | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ChampionWinrateWhereInput | ChampionWinrateWhereInput[] | No |
| OR | ChampionWinrateWhereInput[] | No |
| NOT | ChampionWinrateWhereInput | ChampionWinrateWhereInput[] | No |
| id | StringFilter | String | No |
| profile | ProfileRelationFilter | ProfileWhereInput | Null | Yes |
| profileId | StringNullableFilter | String | Null | Yes |
| champion | StringFilter | String | No |
| wins | IntNullableFilter | Int | Null | Yes |
| games | IntNullableFilter | Int | Null | Yes |
| spell1Casts | IntNullableFilter | Int | Null | Yes |
| spell2Casts | IntNullableFilter | Int | Null | Yes |
| spell3Casts | IntNullableFilter | Int | Null | Yes |
| spell4Casts | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profile | ProfileOrderByWithRelationInput | No |
| profileId | SortOrder | No |
| champion | SortOrder | No |
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| champion | SortOrder | No |
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| _count | ChampionWinrateCountOrderByAggregateInput | No |
| _avg | ChampionWinrateAvgOrderByAggregateInput | No |
| _max | ChampionWinrateMaxOrderByAggregateInput | No |
| _min | ChampionWinrateMinOrderByAggregateInput | No |
| _sum | ChampionWinrateSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChampionWinrateScalarWhereWithAggregatesInput | ChampionWinrateScalarWhereWithAggregatesInput[] | No |
| OR | ChampionWinrateScalarWhereWithAggregatesInput[] | No |
| NOT | ChampionWinrateScalarWhereWithAggregatesInput | ChampionWinrateScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| profileId | StringNullableWithAggregatesFilter | String | Null | Yes |
| champion | StringWithAggregatesFilter | String | No |
| wins | IntNullableWithAggregatesFilter | Int | Null | Yes |
| games | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell1Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell2Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell3Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell4Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DuoWhereInput | DuoWhereInput[] | No |
| OR | DuoWhereInput[] | No |
| NOT | DuoWhereInput | DuoWhereInput[] | No |
| id | StringFilter | String | No |
| profile | ProfileRelationFilter | ProfileWhereInput | Null | Yes |
| profileId | StringNullableFilter | String | Null | Yes |
| name | StringFilter | String | No |
| wins | IntNullableFilter | Int | Null | Yes |
| losses | IntNullableFilter | Int | Null | Yes |
| winrate | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profile | ProfileOrderByWithRelationInput | No |
| profileId | SortOrder | No |
| name | SortOrder | No |
| wins | SortOrder | No |
| losses | SortOrder | No |
| winrate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| name | SortOrder | No |
| wins | SortOrder | No |
| losses | SortOrder | No |
| winrate | SortOrder | No |
| _count | DuoCountOrderByAggregateInput | No |
| _avg | DuoAvgOrderByAggregateInput | No |
| _max | DuoMaxOrderByAggregateInput | No |
| _min | DuoMinOrderByAggregateInput | No |
| _sum | DuoSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DuoScalarWhereWithAggregatesInput | DuoScalarWhereWithAggregatesInput[] | No |
| OR | DuoScalarWhereWithAggregatesInput[] | No |
| NOT | DuoScalarWhereWithAggregatesInput | DuoScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| profileId | StringNullableWithAggregatesFilter | String | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| wins | IntNullableWithAggregatesFilter | Int | Null | Yes |
| losses | IntNullableWithAggregatesFilter | Int | Null | Yes |
| winrate | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConstantWhereInput | ConstantWhereInput[] | No |
| OR | ConstantWhereInput[] | No |
| NOT | ConstantWhereInput | ConstantWhereInput[] | No |
| id | StringFilter | String | No |
| startTime | StringFilter | String | No |
| currentSeason | StringFilter | String | No |
| seeding | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| startTime | SortOrder | No |
| currentSeason | SortOrder | No |
| seeding | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| startTime | SortOrder | No |
| currentSeason | SortOrder | No |
| seeding | SortOrder | No |
| _count | ConstantCountOrderByAggregateInput | No |
| _max | ConstantMaxOrderByAggregateInput | No |
| _min | ConstantMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConstantScalarWhereWithAggregatesInput | ConstantScalarWhereWithAggregatesInput[] | No |
| OR | ConstantScalarWhereWithAggregatesInput[] | No |
| NOT | ConstantScalarWhereWithAggregatesInput | ConstantScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| startTime | StringWithAggregatesFilter | String | No |
| currentSeason | StringWithAggregatesFilter | String | No |
| seeding | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventWhereInput | EventWhereInput[] | No |
| OR | EventWhereInput[] | No |
| NOT | EventWhereInput | EventWhereInput[] | No |
| id | StringFilter | String | No |
| timestamp | IntNullableFilter | Int | Null | Yes |
| position | PositionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| position | PositionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| _count | EventCountOrderByAggregateInput | No |
| _avg | EventAvgOrderByAggregateInput | No |
| _max | EventMaxOrderByAggregateInput | No |
| _min | EventMinOrderByAggregateInput | No |
| _sum | EventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| OR | EventScalarWhereWithAggregatesInput[] | No |
| NOT | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| timestamp | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | GameWhereInput | GameWhereInput[] | No |
| OR | GameWhereInput[] | No |
| NOT | GameWhereInput | GameWhereInput[] | No |
| id | StringFilter | String | No |
| matchId | StringFilter | String | No |
| gameId | StringFilter | String | No |
| gameCreation | StringFilter | String | No |
| gameStartTimestamp | StringFilter | String | No |
| gameEndTimestamp | StringFilter | String | No |
| duration | IntNullableFilter | Int | Null | Yes |
| start | StringFilter | String | No |
| gameVersion | StringFilter | String | No |
| blueTeam | TeamRelationFilter | TeamWhereInput | Null | Yes |
| blueTeamId | StringNullableFilter | String | Null | Yes |
| redTeam | TeamRelationFilter | TeamWhereInput | Null | Yes |
| redTeamId | StringNullableFilter | String | Null | Yes |
| source | SourceListRelationFilter | No |
| tournament | StringFilter | String | No |
| gameInSeries | IntNullableFilter | Int | Null | Yes |
| vod | StringFilter | String | No |
| platformId | StringFilter | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatListRelationFilter | No |
| from_Team_game | TeamListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| matchId | SortOrder | No |
| gameId | SortOrder | No |
| gameCreation | SortOrder | No |
| gameStartTimestamp | SortOrder | No |
| gameEndTimestamp | SortOrder | No |
| duration | SortOrder | No |
| start | SortOrder | No |
| gameVersion | SortOrder | No |
| blueTeam | TeamOrderByWithRelationInput | No |
| blueTeamId | SortOrder | No |
| redTeam | TeamOrderByWithRelationInput | No |
| redTeamId | SortOrder | No |
| source | SourceOrderByRelationAggregateInput | No |
| tournament | SortOrder | No |
| gameInSeries | SortOrder | No |
| vod | SortOrder | No |
| platformId | SortOrder | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatOrderByRelationAggregateInput | No |
| from_Team_game | TeamOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| matchId | SortOrder | No |
| gameId | SortOrder | No |
| gameCreation | SortOrder | No |
| gameStartTimestamp | SortOrder | No |
| gameEndTimestamp | SortOrder | No |
| duration | SortOrder | No |
| start | SortOrder | No |
| gameVersion | SortOrder | No |
| blueTeamId | SortOrder | No |
| redTeamId | SortOrder | No |
| tournament | SortOrder | No |
| gameInSeries | SortOrder | No |
| vod | SortOrder | No |
| platformId | SortOrder | No |
| _count | GameCountOrderByAggregateInput | No |
| _avg | GameAvgOrderByAggregateInput | No |
| _max | GameMaxOrderByAggregateInput | No |
| _min | GameMinOrderByAggregateInput | No |
| _sum | GameSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObjectiveWhereInput | ObjectiveWhereInput[] | No |
| OR | ObjectiveWhereInput[] | No |
| NOT | ObjectiveWhereInput | ObjectiveWhereInput[] | No |
| id | StringFilter | String | No |
| team | TeamRelationFilter | TeamWhereInput | Null | Yes |
| teamId | StringNullableFilter | String | Null | Yes |
| first | BoolFilter | Boolean | No |
| kills | IntNullableFilter | Int | Null | Yes |
| type | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| team | TeamOrderByWithRelationInput | No |
| teamId | SortOrder | No |
| first | SortOrder | No |
| kills | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| first | SortOrder | No |
| kills | SortOrder | No |
| type | SortOrder | No |
| _count | ObjectiveCountOrderByAggregateInput | No |
| _avg | ObjectiveAvgOrderByAggregateInput | No |
| _max | ObjectiveMaxOrderByAggregateInput | No |
| _min | ObjectiveMinOrderByAggregateInput | No |
| _sum | ObjectiveSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObjectiveScalarWhereWithAggregatesInput | ObjectiveScalarWhereWithAggregatesInput[] | No |
| OR | ObjectiveScalarWhereWithAggregatesInput[] | No |
| NOT | ObjectiveScalarWhereWithAggregatesInput | ObjectiveScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| teamId | StringNullableWithAggregatesFilter | String | Null | Yes |
| first | BoolWithAggregatesFilter | Boolean | No |
| kills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| type | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PickBanWhereInput | PickBanWhereInput[] | No |
| OR | PickBanWhereInput[] | No |
| NOT | PickBanWhereInput | PickBanWhereInput[] | No |
| id | StringFilter | String | No |
| team | TeamRelationFilter | TeamWhereInput | Null | Yes |
| teamId | StringNullableFilter | String | Null | Yes |
| championId | IntNullableFilter | Int | Null | Yes |
| pickTurn | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| team | TeamOrderByWithRelationInput | No |
| teamId | SortOrder | No |
| championId | SortOrder | No |
| pickTurn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| championId | SortOrder | No |
| pickTurn | SortOrder | No |
| _count | PickBanCountOrderByAggregateInput | No |
| _avg | PickBanAvgOrderByAggregateInput | No |
| _max | PickBanMaxOrderByAggregateInput | No |
| _min | PickBanMinOrderByAggregateInput | No |
| _sum | PickBanSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PickBanScalarWhereWithAggregatesInput | PickBanScalarWhereWithAggregatesInput[] | No |
| OR | PickBanScalarWhereWithAggregatesInput[] | No |
| NOT | PickBanScalarWhereWithAggregatesInput | PickBanScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| teamId | StringNullableWithAggregatesFilter | String | Null | Yes |
| championId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| pickTurn | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| puuid | SortOrder | No |
| accountId | SortOrder | No |
| platformId | SortOrder | No |
| summonerId | SortOrder | No |
| summonerName | SortOrder | No |
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| revisionDate | SortOrder | No |
| kills | PlayerKillOrderByRelationAggregateInput | No |
| deaths | PlayerKillOrderByRelationAggregateInput | No |
| teams | TeamOrderByRelationAggregateInput | No |
| profile | ProfileOrderByWithRelationInput | No |
| profileId | SortOrder | No |
| monsterKills | TeamMonsterKillOrderByRelationAggregateInput | No |
| buildingKills | TeamBuildingKillOrderByRelationAggregateInput | No |
| itemEvent | PlayerItemEventOrderByRelationAggregateInput | No |
| endOfGameStats | PlayerEndOfGameStatOrderByRelationAggregateInput | No |
| snapshots | PlayerSnapshotOrderByRelationAggregateInput | No |
| wardEvents | PlayerWardEventOrderByRelationAggregateInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| summonerId | String | No |
| profileId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| puuid | SortOrder | No |
| accountId | SortOrder | No |
| platformId | SortOrder | No |
| summonerId | SortOrder | No |
| summonerName | SortOrder | No |
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| revisionDate | SortOrder | No |
| profileId | SortOrder | No |
| _count | PlayerCountOrderByAggregateInput | No |
| _avg | PlayerAvgOrderByAggregateInput | No |
| _max | PlayerMaxOrderByAggregateInput | No |
| _min | PlayerMinOrderByAggregateInput | No |
| _sum | PlayerSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] | No |
| OR | PlayerScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerScalarWhereWithAggregatesInput | PlayerScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| puuid | StringWithAggregatesFilter | String | No |
| accountId | StringWithAggregatesFilter | String | No |
| platformId | StringWithAggregatesFilter | String | No |
| summonerId | StringWithAggregatesFilter | String | No |
| summonerName | StringWithAggregatesFilter | String | No |
| summonerLevel | IntNullableWithAggregatesFilter | Int | Null | Yes |
| profileIconId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| revisionDate | StringWithAggregatesFilter | String | No |
| profileId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerEndOfGameStatWhereInput | PlayerEndOfGameStatWhereInput[] | No |
| OR | PlayerEndOfGameStatWhereInput[] | No |
| NOT | PlayerEndOfGameStatWhereInput | PlayerEndOfGameStatWhereInput[] | No |
| id | StringFilter | String | No |
| player | PlayerRelationFilter | PlayerWhereInput | Null | Yes |
| playerId | StringNullableFilter | String | Null | Yes |
| game | GameRelationFilter | GameWhereInput | Null | Yes |
| gameId | StringNullableFilter | String | Null | Yes |
| perks | PlayerRuneRelationFilter | PlayerRuneWhereInput | Null | Yes |
| perksId | StringNullableFilter | String | Null | Yes |
| items | PlayerItemRelationFilter | PlayerItemWhereInput | Null | Yes |
| itemsId | StringNullableFilter | String | Null | Yes |
| assists | IntNullableFilter | Int | Null | Yes |
| baronKills | IntNullableFilter | Int | Null | Yes |
| bountyLevel | IntNullableFilter | Int | Null | Yes |
| championExperience | IntNullableFilter | Int | Null | Yes |
| championLevel | IntNullableFilter | Int | Null | Yes |
| championId | IntNullableFilter | Int | Null | Yes |
| championName | StringFilter | String | No |
| championTransform | IntNullableFilter | Int | Null | Yes |
| consumablesPurchased | IntNullableFilter | Int | Null | Yes |
| damageDealtToBuildings | IntNullableFilter | Int | Null | Yes |
| damageDealtToObjectives | IntNullableFilter | Int | Null | Yes |
| damageDealtToTurrets | IntNullableFilter | Int | Null | Yes |
| damageSelfMitigated | IntNullableFilter | Int | Null | Yes |
| deaths | IntNullableFilter | Int | Null | Yes |
| detectorWardsPlaced | IntNullableFilter | Int | Null | Yes |
| doubleKills | IntNullableFilter | Int | Null | Yes |
| dragonKills | IntNullableFilter | Int | Null | Yes |
| firstBlood | BoolFilter | Boolean | No |
| firstBloodAssist | BoolFilter | Boolean | No |
| firstTowerKill | BoolFilter | Boolean | No |
| firstTowerAssist | BoolFilter | Boolean | No |
| gameEndedInEarlySurrender | BoolFilter | Boolean | No |
| gameEndedInSurrender | BoolFilter | Boolean | No |
| goldEarned | IntNullableFilter | Int | Null | Yes |
| goldSpent | IntNullableFilter | Int | Null | Yes |
| individualPosition | StringFilter | String | No |
| inhibitorKills | IntNullableFilter | Int | Null | Yes |
| inhibitorTakedowns | IntNullableFilter | Int | Null | Yes |
| inhibitorsLost | IntNullableFilter | Int | Null | Yes |
| item0 | IntNullableFilter | Int | Null | Yes |
| item1 | IntNullableFilter | Int | Null | Yes |
| item2 | IntNullableFilter | Int | Null | Yes |
| item3 | IntNullableFilter | Int | Null | Yes |
| item4 | IntNullableFilter | Int | Null | Yes |
| item5 | IntNullableFilter | Int | Null | Yes |
| item6 | IntNullableFilter | Int | Null | Yes |
| itemsPurchased | IntNullableFilter | Int | Null | Yes |
| killingSprees | IntNullableFilter | Int | Null | Yes |
| kills | IntNullableFilter | Int | Null | Yes |
| lane | StringFilter | String | No |
| largestCriticalStrike | IntNullableFilter | Int | Null | Yes |
| largestKillingSpree | IntNullableFilter | Int | Null | Yes |
| largestMultiKill | IntNullableFilter | Int | Null | Yes |
| longestTimeSpentLiving | IntNullableFilter | Int | Null | Yes |
| magicDamageDealt | IntNullableFilter | Int | Null | Yes |
| magicDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| magicDamageTaken | IntNullableFilter | Int | Null | Yes |
| neutralMinionsKilled | IntNullableFilter | Int | Null | Yes |
| nexusKills | IntNullableFilter | Int | Null | Yes |
| nexusLost | IntNullableFilter | Int | Null | Yes |
| nexusTakedowns | IntNullableFilter | Int | Null | Yes |
| objectivesStolen | IntNullableFilter | Int | Null | Yes |
| objectivesStolenAssists | IntNullableFilter | Int | Null | Yes |
| participantId | IntNullableFilter | Int | Null | Yes |
| pentaKills | IntNullableFilter | Int | Null | Yes |
| physicalDamageDealt | IntNullableFilter | Int | Null | Yes |
| physicalDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| physicalDamageTaken | IntNullableFilter | Int | Null | Yes |
| quadraKills | IntNullableFilter | Int | Null | Yes |
| riotIdName | StringFilter | String | No |
| riotIdTagline | StringFilter | String | No |
| role | StringFilter | String | No |
| sightWardsBoughtInGame | IntNullableFilter | Int | Null | Yes |
| spell1Casts | IntNullableFilter | Int | Null | Yes |
| spell2Casts | IntNullableFilter | Int | Null | Yes |
| spell3Casts | IntNullableFilter | Int | Null | Yes |
| spell4Casts | IntNullableFilter | Int | Null | Yes |
| summoner1Casts | IntNullableFilter | Int | Null | Yes |
| summoner1Id | IntNullableFilter | Int | Null | Yes |
| summoner2Casts | IntNullableFilter | Int | Null | Yes |
| summoner2Id | IntNullableFilter | Int | Null | Yes |
| summonerLevel | IntNullableFilter | Int | Null | Yes |
| summonerName | StringFilter | String | No |
| teamEarlySurrendered | BoolFilter | Boolean | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| teamPosition | StringFilter | String | No |
| timeCCingOthers | IntNullableFilter | Int | Null | Yes |
| timePlayed | IntNullableFilter | Int | Null | Yes |
| totalDamageDealt | IntNullableFilter | Int | Null | Yes |
| totalDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| totalDamageShieldedOnTeammates | IntNullableFilter | Int | Null | Yes |
| totalDamageTaken | IntNullableFilter | Int | Null | Yes |
| totalHeal | IntNullableFilter | Int | Null | Yes |
| totalHealsOnTeammates | IntNullableFilter | Int | Null | Yes |
| totalMinionsKilled | IntNullableFilter | Int | Null | Yes |
| totalTimeCCDealt | IntNullableFilter | Int | Null | Yes |
| totalTimeSpentDead | IntNullableFilter | Int | Null | Yes |
| totalUnitsHealed | IntNullableFilter | Int | Null | Yes |
| tripleKills | IntNullableFilter | Int | Null | Yes |
| trueDamageDealt | IntNullableFilter | Int | Null | Yes |
| trueDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| trueDamageTaken | IntNullableFilter | Int | Null | Yes |
| turretsKilled | IntNullableFilter | Int | Null | Yes |
| turretTakedowns | IntNullableFilter | Int | Null | Yes |
| turretsLost | IntNullableFilter | Int | Null | Yes |
| unrealKills | IntNullableFilter | Int | Null | Yes |
| visionScore | IntNullableFilter | Int | Null | Yes |
| visionWardsBoughtInGame | IntNullableFilter | Int | Null | Yes |
| wardsKilled | IntNullableFilter | Int | Null | Yes |
| wardsPlaced | IntNullableFilter | Int | Null | Yes |
| win | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| player | PlayerOrderByWithRelationInput | No |
| playerId | SortOrder | No |
| game | GameOrderByWithRelationInput | No |
| gameId | SortOrder | No |
| perks | PlayerRuneOrderByWithRelationInput | No |
| perksId | SortOrder | No |
| items | PlayerItemOrderByWithRelationInput | No |
| itemsId | SortOrder | No |
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championName | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| firstBlood | SortOrder | No |
| firstBloodAssist | SortOrder | No |
| firstTowerKill | SortOrder | No |
| firstTowerAssist | SortOrder | No |
| gameEndedInEarlySurrender | SortOrder | No |
| gameEndedInSurrender | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| individualPosition | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| lane | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| riotIdName | SortOrder | No |
| riotIdTagline | SortOrder | No |
| role | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| summonerName | SortOrder | No |
| teamEarlySurrendered | SortOrder | No |
| teamId | SortOrder | No |
| teamPosition | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| perksId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerId | SortOrder | No |
| gameId | SortOrder | No |
| perksId | SortOrder | No |
| itemsId | SortOrder | No |
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championName | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| firstBlood | SortOrder | No |
| firstBloodAssist | SortOrder | No |
| firstTowerKill | SortOrder | No |
| firstTowerAssist | SortOrder | No |
| gameEndedInEarlySurrender | SortOrder | No |
| gameEndedInSurrender | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| individualPosition | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| lane | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| riotIdName | SortOrder | No |
| riotIdTagline | SortOrder | No |
| role | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| summonerName | SortOrder | No |
| teamEarlySurrendered | SortOrder | No |
| teamId | SortOrder | No |
| teamPosition | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| win | SortOrder | No |
| _count | PlayerEndOfGameStatCountOrderByAggregateInput | No |
| _avg | PlayerEndOfGameStatAvgOrderByAggregateInput | No |
| _max | PlayerEndOfGameStatMaxOrderByAggregateInput | No |
| _min | PlayerEndOfGameStatMinOrderByAggregateInput | No |
| _sum | PlayerEndOfGameStatSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerEndOfGameStatScalarWhereWithAggregatesInput | PlayerEndOfGameStatScalarWhereWithAggregatesInput[] | No |
| OR | PlayerEndOfGameStatScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerEndOfGameStatScalarWhereWithAggregatesInput | PlayerEndOfGameStatScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| playerId | StringNullableWithAggregatesFilter | String | Null | Yes |
| gameId | StringNullableWithAggregatesFilter | String | Null | Yes |
| perksId | StringNullableWithAggregatesFilter | String | Null | Yes |
| itemsId | StringNullableWithAggregatesFilter | String | Null | Yes |
| assists | IntNullableWithAggregatesFilter | Int | Null | Yes |
| baronKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| bountyLevel | IntNullableWithAggregatesFilter | Int | Null | Yes |
| championExperience | IntNullableWithAggregatesFilter | Int | Null | Yes |
| championLevel | IntNullableWithAggregatesFilter | Int | Null | Yes |
| championId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| championName | StringWithAggregatesFilter | String | No |
| championTransform | IntNullableWithAggregatesFilter | Int | Null | Yes |
| consumablesPurchased | IntNullableWithAggregatesFilter | Int | Null | Yes |
| damageDealtToBuildings | IntNullableWithAggregatesFilter | Int | Null | Yes |
| damageDealtToObjectives | IntNullableWithAggregatesFilter | Int | Null | Yes |
| damageDealtToTurrets | IntNullableWithAggregatesFilter | Int | Null | Yes |
| damageSelfMitigated | IntNullableWithAggregatesFilter | Int | Null | Yes |
| deaths | IntNullableWithAggregatesFilter | Int | Null | Yes |
| detectorWardsPlaced | IntNullableWithAggregatesFilter | Int | Null | Yes |
| doubleKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| dragonKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| firstBlood | BoolWithAggregatesFilter | Boolean | No |
| firstBloodAssist | BoolWithAggregatesFilter | Boolean | No |
| firstTowerKill | BoolWithAggregatesFilter | Boolean | No |
| firstTowerAssist | BoolWithAggregatesFilter | Boolean | No |
| gameEndedInEarlySurrender | BoolWithAggregatesFilter | Boolean | No |
| gameEndedInSurrender | BoolWithAggregatesFilter | Boolean | No |
| goldEarned | IntNullableWithAggregatesFilter | Int | Null | Yes |
| goldSpent | IntNullableWithAggregatesFilter | Int | Null | Yes |
| individualPosition | StringWithAggregatesFilter | String | No |
| inhibitorKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| inhibitorTakedowns | IntNullableWithAggregatesFilter | Int | Null | Yes |
| inhibitorsLost | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item0 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item1 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item2 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item3 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item4 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item5 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| item6 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| itemsPurchased | IntNullableWithAggregatesFilter | Int | Null | Yes |
| killingSprees | IntNullableWithAggregatesFilter | Int | Null | Yes |
| kills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| lane | StringWithAggregatesFilter | String | No |
| largestCriticalStrike | IntNullableWithAggregatesFilter | Int | Null | Yes |
| largestKillingSpree | IntNullableWithAggregatesFilter | Int | Null | Yes |
| largestMultiKill | IntNullableWithAggregatesFilter | Int | Null | Yes |
| longestTimeSpentLiving | IntNullableWithAggregatesFilter | Int | Null | Yes |
| magicDamageDealt | IntNullableWithAggregatesFilter | Int | Null | Yes |
| magicDamageDealtToChampions | IntNullableWithAggregatesFilter | Int | Null | Yes |
| magicDamageTaken | IntNullableWithAggregatesFilter | Int | Null | Yes |
| neutralMinionsKilled | IntNullableWithAggregatesFilter | Int | Null | Yes |
| nexusKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| nexusLost | IntNullableWithAggregatesFilter | Int | Null | Yes |
| nexusTakedowns | IntNullableWithAggregatesFilter | Int | Null | Yes |
| objectivesStolen | IntNullableWithAggregatesFilter | Int | Null | Yes |
| objectivesStolenAssists | IntNullableWithAggregatesFilter | Int | Null | Yes |
| participantId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| pentaKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| physicalDamageDealt | IntNullableWithAggregatesFilter | Int | Null | Yes |
| physicalDamageDealtToChampions | IntNullableWithAggregatesFilter | Int | Null | Yes |
| physicalDamageTaken | IntNullableWithAggregatesFilter | Int | Null | Yes |
| quadraKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| riotIdName | StringWithAggregatesFilter | String | No |
| riotIdTagline | StringWithAggregatesFilter | String | No |
| role | StringWithAggregatesFilter | String | No |
| sightWardsBoughtInGame | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell1Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell2Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell3Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| spell4Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summoner1Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summoner1Id | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summoner2Casts | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summoner2Id | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summonerLevel | IntNullableWithAggregatesFilter | Int | Null | Yes |
| summonerName | StringWithAggregatesFilter | String | No |
| teamEarlySurrendered | BoolWithAggregatesFilter | Boolean | No |
| teamId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| teamPosition | StringWithAggregatesFilter | String | No |
| timeCCingOthers | IntNullableWithAggregatesFilter | Int | Null | Yes |
| timePlayed | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalDamageDealt | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalDamageDealtToChampions | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalDamageShieldedOnTeammates | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalDamageTaken | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalHeal | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalHealsOnTeammates | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalMinionsKilled | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalTimeCCDealt | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalTimeSpentDead | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalUnitsHealed | IntNullableWithAggregatesFilter | Int | Null | Yes |
| tripleKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| trueDamageDealt | IntNullableWithAggregatesFilter | Int | Null | Yes |
| trueDamageDealtToChampions | IntNullableWithAggregatesFilter | Int | Null | Yes |
| trueDamageTaken | IntNullableWithAggregatesFilter | Int | Null | Yes |
| turretsKilled | IntNullableWithAggregatesFilter | Int | Null | Yes |
| turretTakedowns | IntNullableWithAggregatesFilter | Int | Null | Yes |
| turretsLost | IntNullableWithAggregatesFilter | Int | Null | Yes |
| unrealKills | IntNullableWithAggregatesFilter | Int | Null | Yes |
| visionScore | IntNullableWithAggregatesFilter | Int | Null | Yes |
| visionWardsBoughtInGame | IntNullableWithAggregatesFilter | Int | Null | Yes |
| wardsKilled | IntNullableWithAggregatesFilter | Int | Null | Yes |
| wardsPlaced | IntNullableWithAggregatesFilter | Int | Null | Yes |
| win | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerItemWhereInput | PlayerItemWhereInput[] | No |
| OR | PlayerItemWhereInput[] | No |
| NOT | PlayerItemWhereInput | PlayerItemWhereInput[] | No |
| id | StringFilter | String | No |
| slot | IntNullableFilter | Int | Null | Yes |
| itemId | IntNullableFilter | Int | Null | Yes |
| name | StringFilter | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slot | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| playerEndOfGameStat | PlayerEndOfGameStatOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slot | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| _count | PlayerItemCountOrderByAggregateInput | No |
| _avg | PlayerItemAvgOrderByAggregateInput | No |
| _max | PlayerItemMaxOrderByAggregateInput | No |
| _min | PlayerItemMinOrderByAggregateInput | No |
| _sum | PlayerItemSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerItemScalarWhereWithAggregatesInput | PlayerItemScalarWhereWithAggregatesInput[] | No |
| OR | PlayerItemScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerItemScalarWhereWithAggregatesInput | PlayerItemScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| slot | IntNullableWithAggregatesFilter | Int | Null | Yes |
| itemId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerItemEventWhereInput | PlayerItemEventWhereInput[] | No |
| OR | PlayerItemEventWhereInput[] | No |
| NOT | PlayerItemEventWhereInput | PlayerItemEventWhereInput[] | No |
| id | StringFilter | String | No |
| player | PlayerListRelationFilter | No |
| type | StringFilter | String | No |
| itemId | IntNullableFilter | Int | Null | Yes |
| name | StringFilter | String | No |
| undoId | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| player | PlayerOrderByRelationAggregateInput | No |
| type | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| undoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| undoId | SortOrder | No |
| _count | PlayerItemEventCountOrderByAggregateInput | No |
| _avg | PlayerItemEventAvgOrderByAggregateInput | No |
| _max | PlayerItemEventMaxOrderByAggregateInput | No |
| _min | PlayerItemEventMinOrderByAggregateInput | No |
| _sum | PlayerItemEventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerItemEventScalarWhereWithAggregatesInput | PlayerItemEventScalarWhereWithAggregatesInput[] | No |
| OR | PlayerItemEventScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerItemEventScalarWhereWithAggregatesInput | PlayerItemEventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| itemId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| name | StringWithAggregatesFilter | String | No |
| undoId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerKillWhereInput | PlayerKillWhereInput[] | No |
| OR | PlayerKillWhereInput[] | No |
| NOT | PlayerKillWhereInput | PlayerKillWhereInput[] | No |
| id | StringFilter | String | No |
| killer | PlayerListRelationFilter | No |
| victim | PlayerListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| killer | PlayerOrderByRelationAggregateInput | No |
| victim | PlayerOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| _count | PlayerKillCountOrderByAggregateInput | No |
| _max | PlayerKillMaxOrderByAggregateInput | No |
| _min | PlayerKillMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerKillScalarWhereWithAggregatesInput | PlayerKillScalarWhereWithAggregatesInput[] | No |
| OR | PlayerKillScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerKillScalarWhereWithAggregatesInput | PlayerKillScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerRuneWhereInput | PlayerRuneWhereInput[] | No |
| OR | PlayerRuneWhereInput[] | No |
| NOT | PlayerRuneWhereInput | PlayerRuneWhereInput[] | No |
| id | StringFilter | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatRelationFilter | PlayerEndOfGameStatWhereInput | Null | Yes |
| runeStyle | RuneStyleListRelationFilter | No |
| defense | IntNullableFilter | Int | Null | Yes |
| flex | IntNullableFilter | Int | Null | Yes |
| offense | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerEndOfGameStat | PlayerEndOfGameStatOrderByWithRelationInput | No |
| runeStyle | RuneStyleOrderByRelationAggregateInput | No |
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| _count | PlayerRuneCountOrderByAggregateInput | No |
| _avg | PlayerRuneAvgOrderByAggregateInput | No |
| _max | PlayerRuneMaxOrderByAggregateInput | No |
| _min | PlayerRuneMinOrderByAggregateInput | No |
| _sum | PlayerRuneSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerRuneScalarWhereWithAggregatesInput | PlayerRuneScalarWhereWithAggregatesInput[] | No |
| OR | PlayerRuneScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerRuneScalarWhereWithAggregatesInput | PlayerRuneScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| defense | IntNullableWithAggregatesFilter | Int | Null | Yes |
| flex | IntNullableWithAggregatesFilter | Int | Null | Yes |
| offense | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSkillLevelUpEventWhereInput | PlayerSkillLevelUpEventWhereInput[] | No |
| OR | PlayerSkillLevelUpEventWhereInput[] | No |
| NOT | PlayerSkillLevelUpEventWhereInput | PlayerSkillLevelUpEventWhereInput[] | No |
| id | StringFilter | String | No |
| player | PlayerListRelationFilter | No |
| type | StringFilter | String | No |
| slot | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| player | PlayerOrderByRelationAggregateInput | No |
| type | SortOrder | No |
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| slot | SortOrder | No |
| _count | PlayerSkillLevelUpEventCountOrderByAggregateInput | No |
| _avg | PlayerSkillLevelUpEventAvgOrderByAggregateInput | No |
| _max | PlayerSkillLevelUpEventMaxOrderByAggregateInput | No |
| _min | PlayerSkillLevelUpEventMinOrderByAggregateInput | No |
| _sum | PlayerSkillLevelUpEventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSkillLevelUpEventScalarWhereWithAggregatesInput | PlayerSkillLevelUpEventScalarWhereWithAggregatesInput[] | No |
| OR | PlayerSkillLevelUpEventScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerSkillLevelUpEventScalarWhereWithAggregatesInput | PlayerSkillLevelUpEventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| slot | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSnapshotWhereInput | PlayerSnapshotWhereInput[] | No |
| OR | PlayerSnapshotWhereInput[] | No |
| NOT | PlayerSnapshotWhereInput | PlayerSnapshotWhereInput[] | No |
| id | StringFilter | String | No |
| timestamp | FloatNullableFilter | Float | Null | Yes |
| currentGold | IntNullableFilter | Int | Null | Yes |
| totalGold | IntNullableFilter | Int | Null | Yes |
| totalGoldDiff | IntNullableFilter | Int | Null | Yes |
| xp | IntNullableFilter | Int | Null | Yes |
| xpDiff | IntNullableFilter | Int | Null | Yes |
| level | IntNullableFilter | Int | Null | Yes |
| cs | IntNullableFilter | Int | Null | Yes |
| csDiff | IntNullableFilter | Int | Null | Yes |
| monstersKilled | IntNullableFilter | Int | Null | Yes |
| monstersKilledDiff | IntNullableFilter | Int | Null | Yes |
| position | PositionListRelationFilter | No |
| player | PlayerListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| position | PositionOrderByRelationAggregateInput | No |
| player | PlayerOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| _count | PlayerSnapshotCountOrderByAggregateInput | No |
| _avg | PlayerSnapshotAvgOrderByAggregateInput | No |
| _max | PlayerSnapshotMaxOrderByAggregateInput | No |
| _min | PlayerSnapshotMinOrderByAggregateInput | No |
| _sum | PlayerSnapshotSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSnapshotScalarWhereWithAggregatesInput | PlayerSnapshotScalarWhereWithAggregatesInput[] | No |
| OR | PlayerSnapshotScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerSnapshotScalarWhereWithAggregatesInput | PlayerSnapshotScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| timestamp | FloatNullableWithAggregatesFilter | Float | Null | Yes |
| currentGold | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalGold | IntNullableWithAggregatesFilter | Int | Null | Yes |
| totalGoldDiff | IntNullableWithAggregatesFilter | Int | Null | Yes |
| xp | IntNullableWithAggregatesFilter | Int | Null | Yes |
| xpDiff | IntNullableWithAggregatesFilter | Int | Null | Yes |
| level | IntNullableWithAggregatesFilter | Int | Null | Yes |
| cs | IntNullableWithAggregatesFilter | Int | Null | Yes |
| csDiff | IntNullableWithAggregatesFilter | Int | Null | Yes |
| monstersKilled | IntNullableWithAggregatesFilter | Int | Null | Yes |
| monstersKilledDiff | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerWardEventWhereInput | PlayerWardEventWhereInput[] | No |
| OR | PlayerWardEventWhereInput[] | No |
| NOT | PlayerWardEventWhereInput | PlayerWardEventWhereInput[] | No |
| id | StringFilter | String | No |
| player | PlayerListRelationFilter | No |
| type | StringFilter | String | No |
| wardType | EnumPlayerWardEventWardTypeTypeNullableFilter | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| player | PlayerOrderByRelationAggregateInput | No |
| type | SortOrder | No |
| wardType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| wardType | SortOrder | No |
| _count | PlayerWardEventCountOrderByAggregateInput | No |
| _max | PlayerWardEventMaxOrderByAggregateInput | No |
| _min | PlayerWardEventMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerWardEventScalarWhereWithAggregatesInput | PlayerWardEventScalarWhereWithAggregatesInput[] | No |
| OR | PlayerWardEventScalarWhereWithAggregatesInput[] | No |
| NOT | PlayerWardEventScalarWhereWithAggregatesInput | PlayerWardEventScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| wardType | EnumPlayerWardEventWardTypeTypeNullableWithAggregatesFilter | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PositionWhereInput | PositionWhereInput[] | No |
| OR | PositionWhereInput[] | No |
| NOT | PositionWhereInput | PositionWhereInput[] | No |
| id | StringFilter | String | No |
| event | EventListRelationFilter | No |
| x | IntNullableFilter | Int | Null | Yes |
| y | IntNullableFilter | Int | Null | Yes |
| playerSnapshot | PlayerSnapshotListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| event | EventOrderByRelationAggregateInput | No |
| x | SortOrder | No |
| y | SortOrder | No |
| playerSnapshot | PlayerSnapshotOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| x | SortOrder | No |
| y | SortOrder | No |
| _count | PositionCountOrderByAggregateInput | No |
| _avg | PositionAvgOrderByAggregateInput | No |
| _max | PositionMaxOrderByAggregateInput | No |
| _min | PositionMinOrderByAggregateInput | No |
| _sum | PositionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PositionScalarWhereWithAggregatesInput | PositionScalarWhereWithAggregatesInput[] | No |
| OR | PositionScalarWhereWithAggregatesInput[] | No |
| NOT | PositionScalarWhereWithAggregatesInput | PositionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| x | IntNullableWithAggregatesFilter | Int | Null | Yes |
| y | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ProfileWhereInput | ProfileWhereInput[] | No |
| OR | ProfileWhereInput[] | No |
| NOT | ProfileWhereInput | ProfileWhereInput[] | No |
| id | StringFilter | String | No |
| update | BoolFilter | Boolean | No |
| player | PlayerRelationFilter | PlayerWhereInput | Null | Yes |
| lastUpdate | DateTimeFilter | DateTime | No |
| kills | IntNullableFilter | Int | Null | Yes |
| deaths | IntNullableFilter | Int | Null | Yes |
| assists | IntNullableFilter | Int | Null | Yes |
| kda | StringFilter | String | No |
| winRate | StringFilter | String | No |
| csPerMinute | StringFilter | String | No |
| damagePerMinute | StringFilter | String | No |
| killsPerMinute | StringFilter | String | No |
| goldPerMinute | StringFilter | String | No |
| averageGameTime | StringFilter | String | No |
| averageTimeSpentDead | StringFilter | String | No |
| totalGameTime | StringFilter | String | No |
| activity | ActivityListRelationFilter | No |
| championWinrate | ChampionWinrateListRelationFilter | No |
| duos | DuoListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| update | SortOrder | No |
| player | PlayerOrderByWithRelationInput | No |
| lastUpdate | SortOrder | No |
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| kda | SortOrder | No |
| winRate | SortOrder | No |
| csPerMinute | SortOrder | No |
| damagePerMinute | SortOrder | No |
| killsPerMinute | SortOrder | No |
| goldPerMinute | SortOrder | No |
| averageGameTime | SortOrder | No |
| averageTimeSpentDead | SortOrder | No |
| totalGameTime | SortOrder | No |
| activity | ActivityOrderByRelationAggregateInput | No |
| championWinrate | ChampionWinrateOrderByRelationAggregateInput | No |
| duos | DuoOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| update | SortOrder | No |
| lastUpdate | SortOrder | No |
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| kda | SortOrder | No |
| winRate | SortOrder | No |
| csPerMinute | SortOrder | No |
| damagePerMinute | SortOrder | No |
| killsPerMinute | SortOrder | No |
| goldPerMinute | SortOrder | No |
| averageGameTime | SortOrder | No |
| averageTimeSpentDead | SortOrder | No |
| totalGameTime | SortOrder | No |
| _count | ProfileCountOrderByAggregateInput | No |
| _avg | ProfileAvgOrderByAggregateInput | No |
| _max | ProfileMaxOrderByAggregateInput | No |
| _min | ProfileMinOrderByAggregateInput | No |
| _sum | ProfileSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SeedIdentifierWhereInput | SeedIdentifierWhereInput[] | No |
| OR | SeedIdentifierWhereInput[] | No |
| NOT | SeedIdentifierWhereInput | SeedIdentifierWhereInput[] | No |
| id | StringFilter | String | No |
| identifier | StringFilter | String | No |
| type | StringFilter | String | No |
| timestamp | DateTimeFilter | DateTime | No |
| priority | BoolFilter | Boolean | No |
| retrieved | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| identifier | SortOrder | No |
| type | SortOrder | No |
| timestamp | SortOrder | No |
| priority | SortOrder | No |
| retrieved | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| identifier | SortOrder | No |
| type | SortOrder | No |
| timestamp | SortOrder | No |
| priority | SortOrder | No |
| retrieved | SortOrder | No |
| _count | SeedIdentifierCountOrderByAggregateInput | No |
| _max | SeedIdentifierMaxOrderByAggregateInput | No |
| _min | SeedIdentifierMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SeedIdentifierScalarWhereWithAggregatesInput | SeedIdentifierScalarWhereWithAggregatesInput[] | No |
| OR | SeedIdentifierScalarWhereWithAggregatesInput[] | No |
| NOT | SeedIdentifierScalarWhereWithAggregatesInput | SeedIdentifierScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| identifier | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| priority | BoolWithAggregatesFilter | Boolean | No |
| retrieved | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SourceWhereInput | SourceWhereInput[] | No |
| OR | SourceWhereInput[] | No |
| NOT | SourceWhereInput | SourceWhereInput[] | No |
| id | StringFilter | String | No |
| game | GameListRelationFilter | No |
| api | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| game | GameOrderByRelationAggregateInput | No |
| api | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| api | SortOrder | No |
| _count | SourceCountOrderByAggregateInput | No |
| _max | SourceMaxOrderByAggregateInput | No |
| _min | SourceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SourceScalarWhereWithAggregatesInput | SourceScalarWhereWithAggregatesInput[] | No |
| OR | SourceScalarWhereWithAggregatesInput[] | No |
| NOT | SourceScalarWhereWithAggregatesInput | SourceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| api | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamWhereInput | TeamWhereInput[] | No |
| OR | TeamWhereInput[] | No |
| NOT | TeamWhereInput | TeamWhereInput[] | No |
| id | StringFilter | String | No |
| pickBan | PickBanListRelationFilter | No |
| game | GameRelationFilter | GameWhereInput | Null | Yes |
| gameId | StringNullableFilter | String | Null | Yes |
| players | PlayerListRelationFilter | No |
| objectives | ObjectiveListRelationFilter | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| teamMatchId | StringFilter | String | No |
| win | BoolFilter | Boolean | No |
| from_Game_blueTeam | GameListRelationFilter | No |
| from_Game_redTeam | GameListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| pickBan | PickBanOrderByRelationAggregateInput | No |
| game | GameOrderByWithRelationInput | No |
| gameId | SortOrder | No |
| players | PlayerOrderByRelationAggregateInput | No |
| objectives | ObjectiveOrderByRelationAggregateInput | No |
| teamId | SortOrder | No |
| teamMatchId | SortOrder | No |
| win | SortOrder | No |
| from_Game_blueTeam | GameOrderByRelationAggregateInput | No |
| from_Game_redTeam | GameOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamMatchId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| teamId | SortOrder | No |
| teamMatchId | SortOrder | No |
| win | SortOrder | No |
| _count | TeamCountOrderByAggregateInput | No |
| _avg | TeamAvgOrderByAggregateInput | No |
| _max | TeamMaxOrderByAggregateInput | No |
| _min | TeamMinOrderByAggregateInput | No |
| _sum | TeamSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| OR | TeamScalarWhereWithAggregatesInput[] | No |
| NOT | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| gameId | StringNullableWithAggregatesFilter | String | Null | Yes |
| teamId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| teamMatchId | StringWithAggregatesFilter | String | No |
| win | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamBuildingKillWhereInput | TeamBuildingKillWhereInput[] | No |
| OR | TeamBuildingKillWhereInput[] | No |
| NOT | TeamBuildingKillWhereInput | TeamBuildingKillWhereInput[] | No |
| id | StringFilter | String | No |
| killer | PlayerListRelationFilter | No |
| type | StringFilter | String | No |
| lane | StringFilter | String | No |
| side | StringFilter | String | No |
| towerLocation | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| killer | PlayerOrderByRelationAggregateInput | No |
| type | SortOrder | No |
| lane | SortOrder | No |
| side | SortOrder | No |
| towerLocation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| lane | SortOrder | No |
| side | SortOrder | No |
| towerLocation | SortOrder | No |
| _count | TeamBuildingKillCountOrderByAggregateInput | No |
| _max | TeamBuildingKillMaxOrderByAggregateInput | No |
| _min | TeamBuildingKillMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamBuildingKillScalarWhereWithAggregatesInput | TeamBuildingKillScalarWhereWithAggregatesInput[] | No |
| OR | TeamBuildingKillScalarWhereWithAggregatesInput[] | No |
| NOT | TeamBuildingKillScalarWhereWithAggregatesInput | TeamBuildingKillScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| lane | StringWithAggregatesFilter | String | No |
| side | StringWithAggregatesFilter | String | No |
| towerLocation | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamMonsterKillWhereInput | TeamMonsterKillWhereInput[] | No |
| OR | TeamMonsterKillWhereInput[] | No |
| NOT | TeamMonsterKillWhereInput | TeamMonsterKillWhereInput[] | No |
| id | StringFilter | String | No |
| killer | PlayerListRelationFilter | No |
| type | StringFilter | String | No |
| subType | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| killer | PlayerOrderByRelationAggregateInput | No |
| type | SortOrder | No |
| subType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| subType | SortOrder | No |
| _count | TeamMonsterKillCountOrderByAggregateInput | No |
| _max | TeamMonsterKillMaxOrderByAggregateInput | No |
| _min | TeamMonsterKillMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamMonsterKillScalarWhereWithAggregatesInput | TeamMonsterKillScalarWhereWithAggregatesInput[] | No |
| OR | TeamMonsterKillScalarWhereWithAggregatesInput[] | No |
| NOT | TeamMonsterKillScalarWhereWithAggregatesInput | TeamMonsterKillScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| type | StringWithAggregatesFilter | String | No |
| subType | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneSelectionWhereInput | RuneSelectionWhereInput[] | No |
| OR | RuneSelectionWhereInput[] | No |
| NOT | RuneSelectionWhereInput | RuneSelectionWhereInput[] | No |
| id | StringFilter | String | No |
| runeStyle | RuneStyleRelationFilter | RuneStyleWhereInput | Null | Yes |
| runeStyleId | StringNullableFilter | String | Null | Yes |
| perk | IntNullableFilter | Int | Null | Yes |
| var1 | IntNullableFilter | Int | Null | Yes |
| var2 | IntNullableFilter | Int | Null | Yes |
| var3 | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| runeStyle | RuneStyleOrderByWithRelationInput | No |
| runeStyleId | SortOrder | No |
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| runeStyleId | SortOrder | No |
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| _count | RuneSelectionCountOrderByAggregateInput | No |
| _avg | RuneSelectionAvgOrderByAggregateInput | No |
| _max | RuneSelectionMaxOrderByAggregateInput | No |
| _min | RuneSelectionMinOrderByAggregateInput | No |
| _sum | RuneSelectionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneSelectionScalarWhereWithAggregatesInput | RuneSelectionScalarWhereWithAggregatesInput[] | No |
| OR | RuneSelectionScalarWhereWithAggregatesInput[] | No |
| NOT | RuneSelectionScalarWhereWithAggregatesInput | RuneSelectionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| runeStyleId | StringNullableWithAggregatesFilter | String | Null | Yes |
| perk | IntNullableWithAggregatesFilter | Int | Null | Yes |
| var1 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| var2 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| var3 | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneStyleWhereInput | RuneStyleWhereInput[] | No |
| OR | RuneStyleWhereInput[] | No |
| NOT | RuneStyleWhereInput | RuneStyleWhereInput[] | No |
| id | StringFilter | String | No |
| playerRunes | PlayerRuneRelationFilter | PlayerRuneWhereInput | Null | Yes |
| playerRunesId | StringNullableFilter | String | Null | Yes |
| selection | RuneSelectionListRelationFilter | No |
| description | StringFilter | String | No |
| style | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerRunes | PlayerRuneOrderByWithRelationInput | No |
| playerRunesId | SortOrder | No |
| selection | RuneSelectionOrderByRelationAggregateInput | No |
| description | SortOrder | No |
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerRunesId | SortOrder | No |
| description | SortOrder | No |
| style | SortOrder | No |
| _count | RuneStyleCountOrderByAggregateInput | No |
| _avg | RuneStyleAvgOrderByAggregateInput | No |
| _max | RuneStyleMaxOrderByAggregateInput | No |
| _min | RuneStyleMinOrderByAggregateInput | No |
| _sum | RuneStyleSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneStyleScalarWhereWithAggregatesInput | RuneStyleScalarWhereWithAggregatesInput[] | No |
| OR | RuneStyleScalarWhereWithAggregatesInput[] | No |
| NOT | RuneStyleScalarWhereWithAggregatesInput | RuneStyleScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| playerRunesId | StringNullableWithAggregatesFilter | String | Null | Yes |
| description | StringWithAggregatesFilter | String | No |
| style | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profile | ProfileCreateNestedOneWithoutActivityInput | No |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profile | ProfileUpdateOneWithoutActivityInput | No |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profile | ProfileCreateNestedOneWithoutChampionWinrateInput | No |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profile | ProfileUpdateOneWithoutChampionWinrateInput | No |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profile | ProfileCreateNestedOneWithoutDuosInput | No |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profile | ProfileUpdateOneWithoutDuosInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | Null | Yes |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| startTime | String | No |
| currentSeason | String | No |
| seeding | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| startTime | String | No |
| currentSeason | String | No |
| seeding | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| startTime | String | StringFieldUpdateOperationsInput | No |
| currentSeason | String | StringFieldUpdateOperationsInput | No |
| seeding | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| startTime | String | StringFieldUpdateOperationsInput | No |
| currentSeason | String | StringFieldUpdateOperationsInput | No |
| seeding | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| startTime | String | No |
| currentSeason | String | No |
| seeding | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| startTime | String | StringFieldUpdateOperationsInput | No |
| currentSeason | String | StringFieldUpdateOperationsInput | No |
| seeding | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| startTime | String | StringFieldUpdateOperationsInput | No |
| currentSeason | String | StringFieldUpdateOperationsInput | No |
| seeding | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | Null | Yes |
| position | PositionCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | Null | Yes |
| position | PositionUncheckedCreateNestedManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeam | TeamCreateNestedOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamCreateNestedOneWithoutFrom_Game_redTeamInput | No |
| source | SourceCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| redTeamId | String | Null | Yes |
| source | SourceUncheckedCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| redTeamId | String | Null | Yes |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| redTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| team | TeamCreateNestedOneWithoutObjectivesInput | No |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | Null | Yes |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| team | TeamUpdateOneWithoutObjectivesInput | No |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | Null | Yes |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| team | TeamCreateNestedOneWithoutPickBanInput | No |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | Null | Yes |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| team | TeamUpdateOneWithoutPickBanInput | No |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | Null | Yes |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| profileId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedOneWithoutEndOfGameStatsInput | No |
| game | GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| perks | PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| items | PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | Null | Yes |
| itemId | Int | Null | Yes |
| name | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatCreateNestedManyWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | Null | Yes |
| itemId | Int | Null | Yes |
| name | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUpdateManyWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedUpdateManyWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | Null | Yes |
| itemId | Int | Null | Yes |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedManyWithoutItemEventInput | No |
| type | String | No |
| itemId | Int | Null | Yes |
| name | String | No |
| undoId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerUncheckedCreateNestedManyWithoutItemEventInput | No |
| type | String | No |
| itemId | Int | Null | Yes |
| name | String | No |
| undoId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUpdateManyWithoutItemEventInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUncheckedUpdateManyWithoutItemEventInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| itemId | Int | Null | Yes |
| name | String | No |
| undoId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerCreateNestedManyWithoutKillsInput | No |
| victim | PlayerCreateNestedManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerUncheckedCreateNestedManyWithoutKillsInput | No |
| victim | PlayerUncheckedCreateNestedManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUpdateManyWithoutKillsInput | No |
| victim | PlayerUpdateManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUncheckedUpdateManyWithoutKillsInput | No |
| victim | PlayerUncheckedUpdateManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatCreateNestedOneWithoutPerksInput | No |
| runeStyle | RuneStyleCreateNestedManyWithoutPlayerRunesInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedCreateNestedOneWithoutPerksInput | No |
| runeStyle | RuneStyleUncheckedCreateNestedManyWithoutPlayerRunesInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUpdateOneWithoutPerksInput | No |
| runeStyle | RuneStyleUpdateManyWithoutPlayerRunesInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedUpdateOneWithoutPerksInput | No |
| runeStyle | RuneStyleUncheckedUpdateManyWithoutPlayerRunesInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedManyWithoutSkillLevelUpEventsInput | No |
| type | String | No |
| slot | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerUncheckedCreateNestedManyWithoutSkillLevelUpEventsInput | No |
| type | String | No |
| slot | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUpdateManyWithoutSkillLevelUpEventsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUncheckedUpdateManyWithoutSkillLevelUpEventsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| slot | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| position | PositionCreateNestedManyWithoutPlayerSnapshotInput | No |
| player | PlayerCreateNestedManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| position | PositionUncheckedCreateNestedManyWithoutPlayerSnapshotInput | No |
| player | PlayerUncheckedCreateNestedManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUpdateManyWithoutPlayerSnapshotInput | No |
| player | PlayerUpdateManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUncheckedUpdateManyWithoutPlayerSnapshotInput | No |
| player | PlayerUncheckedUpdateManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedManyWithoutWardEventsInput | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerUncheckedCreateNestedManyWithoutWardEventsInput | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUpdateManyWithoutWardEventsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| player | PlayerUncheckedUpdateManyWithoutWardEventsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| event | EventCreateNestedManyWithoutPositionInput | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| playerSnapshot | PlayerSnapshotCreateNestedManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| event | EventUncheckedCreateNestedManyWithoutPositionInput | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| playerSnapshot | PlayerSnapshotUncheckedCreateNestedManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| event | EventUpdateManyWithoutPositionInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| playerSnapshot | PlayerSnapshotUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| event | EventUncheckedUpdateManyWithoutPositionInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| playerSnapshot | PlayerSnapshotUncheckedUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateCreateNestedManyWithoutProfileInput | No |
| duos | DuoCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerUncheckedCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityUncheckedCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput | No |
| duos | DuoUncheckedCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| update | Boolean | BoolFieldUpdateOperationsInput | No |
| lastUpdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| deaths | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assists | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| kda | String | StringFieldUpdateOperationsInput | No |
| winRate | String | StringFieldUpdateOperationsInput | No |
| csPerMinute | String | StringFieldUpdateOperationsInput | No |
| damagePerMinute | String | StringFieldUpdateOperationsInput | No |
| killsPerMinute | String | StringFieldUpdateOperationsInput | No |
| goldPerMinute | String | StringFieldUpdateOperationsInput | No |
| averageGameTime | String | StringFieldUpdateOperationsInput | No |
| averageTimeSpentDead | String | StringFieldUpdateOperationsInput | No |
| totalGameTime | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| update | Boolean | BoolFieldUpdateOperationsInput | No |
| lastUpdate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| deaths | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assists | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| kda | String | StringFieldUpdateOperationsInput | No |
| winRate | String | StringFieldUpdateOperationsInput | No |
| csPerMinute | String | StringFieldUpdateOperationsInput | No |
| damagePerMinute | String | StringFieldUpdateOperationsInput | No |
| killsPerMinute | String | StringFieldUpdateOperationsInput | No |
| goldPerMinute | String | StringFieldUpdateOperationsInput | No |
| averageGameTime | String | StringFieldUpdateOperationsInput | No |
| averageTimeSpentDead | String | StringFieldUpdateOperationsInput | No |
| totalGameTime | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| type | String | No |
| timestamp | DateTime | No |
| priority | Boolean | No |
| retrieved | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| type | String | No |
| timestamp | DateTime | No |
| priority | Boolean | No |
| retrieved | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| priority | Boolean | BoolFieldUpdateOperationsInput | No |
| retrieved | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| priority | Boolean | BoolFieldUpdateOperationsInput | No |
| retrieved | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| type | String | No |
| timestamp | DateTime | No |
| priority | Boolean | No |
| retrieved | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| priority | Boolean | BoolFieldUpdateOperationsInput | No |
| retrieved | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| identifier | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| priority | Boolean | BoolFieldUpdateOperationsInput | No |
| retrieved | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| game | GameCreateNestedManyWithoutSourceInput | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| game | GameUncheckedCreateNestedManyWithoutSourceInput | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| game | GameUpdateManyWithoutSourceInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| game | GameUncheckedUpdateManyWithoutSourceInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| gameId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | Null | Yes |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerCreateNestedManyWithoutBuildingKillsInput | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerUncheckedCreateNestedManyWithoutBuildingKillsInput | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUpdateManyWithoutBuildingKillsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUncheckedUpdateManyWithoutBuildingKillsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerCreateNestedManyWithoutMonsterKillsInput | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerUncheckedCreateNestedManyWithoutMonsterKillsInput | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUpdateManyWithoutMonsterKillsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUncheckedUpdateManyWithoutMonsterKillsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyle | RuneStyleCreateNestedOneWithoutSelectionInput | No |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyleId | String | Null | Yes |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| runeStyle | RuneStyleUpdateOneWithoutSelectionInput | No |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| runeStyleId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyleId | String | Null | Yes |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| runeStyleId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunes | PlayerRuneCreateNestedOneWithoutRuneStyleInput | No |
| selection | RuneSelectionCreateNestedManyWithoutRuneStyleInput | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunesId | String | Null | Yes |
| selection | RuneSelectionUncheckedCreateNestedManyWithoutRuneStyleInput | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerRunes | PlayerRuneUpdateOneWithoutRuneStyleInput | No |
| selection | RuneSelectionUpdateManyWithoutRuneStyleInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerRunesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| selection | RuneSelectionUncheckedUpdateManyWithoutRuneStyleInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunesId | String | Null | Yes |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerRunesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ProfileWhereInput | Null | Yes |
| isNot | ProfileWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| month | SortOrder | No |
| year | SortOrder | No |
| day | SortOrder | No |
| gamesPlayed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| champion | SortOrder | No |
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| champion | SortOrder | No |
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| champion | SortOrder | No |
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| wins | SortOrder | No |
| games | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| name | SortOrder | No |
| wins | SortOrder | No |
| losses | SortOrder | No |
| winrate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| name | SortOrder | No |
| wins | SortOrder | No |
| losses | SortOrder | No |
| winrate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| profileId | SortOrder | No |
| name | SortOrder | No |
| wins | SortOrder | No |
| losses | SortOrder | No |
| winrate | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| startTime | SortOrder | No |
| currentSeason | SortOrder | No |
| seeding | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| startTime | SortOrder | No |
| currentSeason | SortOrder | No |
| seeding | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| startTime | SortOrder | No |
| currentSeason | SortOrder | No |
| seeding | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | PositionWhereInput | No |
| some | PositionWhereInput | No |
| none | PositionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | TeamWhereInput | Null | Yes |
| isNot | TeamWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | SourceWhereInput | No |
| some | SourceWhereInput | No |
| none | SourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerEndOfGameStatWhereInput | No |
| some | PlayerEndOfGameStatWhereInput | No |
| none | PlayerEndOfGameStatWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TeamWhereInput | No |
| some | TeamWhereInput | No |
| none | TeamWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| matchId | SortOrder | No |
| gameId | SortOrder | No |
| gameCreation | SortOrder | No |
| gameStartTimestamp | SortOrder | No |
| gameEndTimestamp | SortOrder | No |
| duration | SortOrder | No |
| start | SortOrder | No |
| gameVersion | SortOrder | No |
| blueTeamId | SortOrder | No |
| redTeamId | SortOrder | No |
| tournament | SortOrder | No |
| gameInSeries | SortOrder | No |
| vod | SortOrder | No |
| platformId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| matchId | SortOrder | No |
| gameId | SortOrder | No |
| gameCreation | SortOrder | No |
| gameStartTimestamp | SortOrder | No |
| gameEndTimestamp | SortOrder | No |
| duration | SortOrder | No |
| start | SortOrder | No |
| gameVersion | SortOrder | No |
| blueTeamId | SortOrder | No |
| redTeamId | SortOrder | No |
| tournament | SortOrder | No |
| gameInSeries | SortOrder | No |
| vod | SortOrder | No |
| platformId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| matchId | SortOrder | No |
| gameId | SortOrder | No |
| gameCreation | SortOrder | No |
| gameStartTimestamp | SortOrder | No |
| gameEndTimestamp | SortOrder | No |
| duration | SortOrder | No |
| start | SortOrder | No |
| gameVersion | SortOrder | No |
| blueTeamId | SortOrder | No |
| redTeamId | SortOrder | No |
| tournament | SortOrder | No |
| gameInSeries | SortOrder | No |
| vod | SortOrder | No |
| platformId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| first | SortOrder | No |
| kills | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| kills | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| first | SortOrder | No |
| kills | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| first | SortOrder | No |
| kills | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| kills | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| championId | SortOrder | No |
| pickTurn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| championId | SortOrder | No |
| pickTurn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| teamId | SortOrder | No |
| championId | SortOrder | No |
| pickTurn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerKillWhereInput | No |
| some | PlayerKillWhereInput | No |
| none | PlayerKillWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TeamMonsterKillWhereInput | No |
| some | TeamMonsterKillWhereInput | No |
| none | TeamMonsterKillWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TeamBuildingKillWhereInput | No |
| some | TeamBuildingKillWhereInput | No |
| none | TeamBuildingKillWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerItemEventWhereInput | No |
| some | PlayerItemEventWhereInput | No |
| none | PlayerItemEventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerSnapshotWhereInput | No |
| some | PlayerSnapshotWhereInput | No |
| none | PlayerSnapshotWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerWardEventWhereInput | No |
| some | PlayerWardEventWhereInput | No |
| none | PlayerWardEventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerSkillLevelUpEventWhereInput | No |
| some | PlayerSkillLevelUpEventWhereInput | No |
| none | PlayerSkillLevelUpEventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| puuid | SortOrder | No |
| accountId | SortOrder | No |
| platformId | SortOrder | No |
| summonerId | SortOrder | No |
| summonerName | SortOrder | No |
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| revisionDate | SortOrder | No |
| profileId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| puuid | SortOrder | No |
| accountId | SortOrder | No |
| platformId | SortOrder | No |
| summonerId | SortOrder | No |
| summonerName | SortOrder | No |
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| revisionDate | SortOrder | No |
| profileId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| puuid | SortOrder | No |
| accountId | SortOrder | No |
| platformId | SortOrder | No |
| summonerId | SortOrder | No |
| summonerName | SortOrder | No |
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| revisionDate | SortOrder | No |
| profileId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| summonerLevel | SortOrder | No |
| profileIconId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | PlayerWhereInput | Null | Yes |
| isNot | PlayerWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | GameWhereInput | Null | Yes |
| isNot | GameWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PlayerRuneWhereInput | Null | Yes |
| isNot | PlayerRuneWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PlayerItemWhereInput | Null | Yes |
| isNot | PlayerItemWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerId | SortOrder | No |
| gameId | SortOrder | No |
| perksId | SortOrder | No |
| itemsId | SortOrder | No |
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championName | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| firstBlood | SortOrder | No |
| firstBloodAssist | SortOrder | No |
| firstTowerKill | SortOrder | No |
| firstTowerAssist | SortOrder | No |
| gameEndedInEarlySurrender | SortOrder | No |
| gameEndedInSurrender | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| individualPosition | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| lane | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| riotIdName | SortOrder | No |
| riotIdTagline | SortOrder | No |
| role | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| summonerName | SortOrder | No |
| teamEarlySurrendered | SortOrder | No |
| teamId | SortOrder | No |
| teamPosition | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| teamId | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerId | SortOrder | No |
| gameId | SortOrder | No |
| perksId | SortOrder | No |
| itemsId | SortOrder | No |
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championName | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| firstBlood | SortOrder | No |
| firstBloodAssist | SortOrder | No |
| firstTowerKill | SortOrder | No |
| firstTowerAssist | SortOrder | No |
| gameEndedInEarlySurrender | SortOrder | No |
| gameEndedInSurrender | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| individualPosition | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| lane | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| riotIdName | SortOrder | No |
| riotIdTagline | SortOrder | No |
| role | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| summonerName | SortOrder | No |
| teamEarlySurrendered | SortOrder | No |
| teamId | SortOrder | No |
| teamPosition | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerId | SortOrder | No |
| gameId | SortOrder | No |
| perksId | SortOrder | No |
| itemsId | SortOrder | No |
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championName | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| firstBlood | SortOrder | No |
| firstBloodAssist | SortOrder | No |
| firstTowerKill | SortOrder | No |
| firstTowerAssist | SortOrder | No |
| gameEndedInEarlySurrender | SortOrder | No |
| gameEndedInSurrender | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| individualPosition | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| lane | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| riotIdName | SortOrder | No |
| riotIdTagline | SortOrder | No |
| role | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| summonerName | SortOrder | No |
| teamEarlySurrendered | SortOrder | No |
| teamId | SortOrder | No |
| teamPosition | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| assists | SortOrder | No |
| baronKills | SortOrder | No |
| bountyLevel | SortOrder | No |
| championExperience | SortOrder | No |
| championLevel | SortOrder | No |
| championId | SortOrder | No |
| championTransform | SortOrder | No |
| consumablesPurchased | SortOrder | No |
| damageDealtToBuildings | SortOrder | No |
| damageDealtToObjectives | SortOrder | No |
| damageDealtToTurrets | SortOrder | No |
| damageSelfMitigated | SortOrder | No |
| deaths | SortOrder | No |
| detectorWardsPlaced | SortOrder | No |
| doubleKills | SortOrder | No |
| dragonKills | SortOrder | No |
| goldEarned | SortOrder | No |
| goldSpent | SortOrder | No |
| inhibitorKills | SortOrder | No |
| inhibitorTakedowns | SortOrder | No |
| inhibitorsLost | SortOrder | No |
| item0 | SortOrder | No |
| item1 | SortOrder | No |
| item2 | SortOrder | No |
| item3 | SortOrder | No |
| item4 | SortOrder | No |
| item5 | SortOrder | No |
| item6 | SortOrder | No |
| itemsPurchased | SortOrder | No |
| killingSprees | SortOrder | No |
| kills | SortOrder | No |
| largestCriticalStrike | SortOrder | No |
| largestKillingSpree | SortOrder | No |
| largestMultiKill | SortOrder | No |
| longestTimeSpentLiving | SortOrder | No |
| magicDamageDealt | SortOrder | No |
| magicDamageDealtToChampions | SortOrder | No |
| magicDamageTaken | SortOrder | No |
| neutralMinionsKilled | SortOrder | No |
| nexusKills | SortOrder | No |
| nexusLost | SortOrder | No |
| nexusTakedowns | SortOrder | No |
| objectivesStolen | SortOrder | No |
| objectivesStolenAssists | SortOrder | No |
| participantId | SortOrder | No |
| pentaKills | SortOrder | No |
| physicalDamageDealt | SortOrder | No |
| physicalDamageDealtToChampions | SortOrder | No |
| physicalDamageTaken | SortOrder | No |
| quadraKills | SortOrder | No |
| sightWardsBoughtInGame | SortOrder | No |
| spell1Casts | SortOrder | No |
| spell2Casts | SortOrder | No |
| spell3Casts | SortOrder | No |
| spell4Casts | SortOrder | No |
| summoner1Casts | SortOrder | No |
| summoner1Id | SortOrder | No |
| summoner2Casts | SortOrder | No |
| summoner2Id | SortOrder | No |
| summonerLevel | SortOrder | No |
| teamId | SortOrder | No |
| timeCCingOthers | SortOrder | No |
| timePlayed | SortOrder | No |
| totalDamageDealt | SortOrder | No |
| totalDamageDealtToChampions | SortOrder | No |
| totalDamageShieldedOnTeammates | SortOrder | No |
| totalDamageTaken | SortOrder | No |
| totalHeal | SortOrder | No |
| totalHealsOnTeammates | SortOrder | No |
| totalMinionsKilled | SortOrder | No |
| totalTimeCCDealt | SortOrder | No |
| totalTimeSpentDead | SortOrder | No |
| totalUnitsHealed | SortOrder | No |
| tripleKills | SortOrder | No |
| trueDamageDealt | SortOrder | No |
| trueDamageDealtToChampions | SortOrder | No |
| trueDamageTaken | SortOrder | No |
| turretsKilled | SortOrder | No |
| turretTakedowns | SortOrder | No |
| turretsLost | SortOrder | No |
| unrealKills | SortOrder | No |
| visionScore | SortOrder | No |
| visionWardsBoughtInGame | SortOrder | No |
| wardsKilled | SortOrder | No |
| wardsPlaced | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slot | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slot | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slot | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | PlayerWhereInput | No |
| some | PlayerWhereInput | No |
| none | PlayerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| undoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| undoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| itemId | SortOrder | No |
| name | SortOrder | No |
| undoId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | PlayerEndOfGameStatWhereInput | Null | Yes |
| isNot | PlayerEndOfGameStatWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | RuneStyleWhereInput | No |
| some | RuneStyleWhereInput | No |
| none | RuneStyleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| defense | SortOrder | No |
| flex | SortOrder | No |
| offense | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| slot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | SortOrder | No |
| currentGold | SortOrder | No |
| totalGold | SortOrder | No |
| totalGoldDiff | SortOrder | No |
| xp | SortOrder | No |
| xpDiff | SortOrder | No |
| level | SortOrder | No |
| cs | SortOrder | No |
| csDiff | SortOrder | No |
| monstersKilled | SortOrder | No |
| monstersKilledDiff | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerWardEventWardTypeType | Null | Yes |
| in | PlayerWardEventWardTypeType[] | Null | Yes |
| notIn | PlayerWardEventWardTypeType[] | Null | Yes |
| not | PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| wardType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| wardType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| wardType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerWardEventWardTypeType | Null | Yes |
| in | PlayerWardEventWardTypeType[] | Null | Yes |
| notIn | PlayerWardEventWardTypeType[] | Null | Yes |
| not | PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | No |
| _max | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | EventWhereInput | No |
| some | EventWhereInput | No |
| none | EventWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | ActivityWhereInput | No |
| some | ActivityWhereInput | No |
| none | ActivityWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChampionWinrateWhereInput | No |
| some | ChampionWinrateWhereInput | No |
| none | ChampionWinrateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | DuoWhereInput | No |
| some | DuoWhereInput | No |
| none | DuoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| update | SortOrder | No |
| lastUpdate | SortOrder | No |
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| kda | SortOrder | No |
| winRate | SortOrder | No |
| csPerMinute | SortOrder | No |
| damagePerMinute | SortOrder | No |
| killsPerMinute | SortOrder | No |
| goldPerMinute | SortOrder | No |
| averageGameTime | SortOrder | No |
| averageTimeSpentDead | SortOrder | No |
| totalGameTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| update | SortOrder | No |
| lastUpdate | SortOrder | No |
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| kda | SortOrder | No |
| winRate | SortOrder | No |
| csPerMinute | SortOrder | No |
| damagePerMinute | SortOrder | No |
| killsPerMinute | SortOrder | No |
| goldPerMinute | SortOrder | No |
| averageGameTime | SortOrder | No |
| averageTimeSpentDead | SortOrder | No |
| totalGameTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| update | SortOrder | No |
| lastUpdate | SortOrder | No |
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| kda | SortOrder | No |
| winRate | SortOrder | No |
| csPerMinute | SortOrder | No |
| damagePerMinute | SortOrder | No |
| killsPerMinute | SortOrder | No |
| goldPerMinute | SortOrder | No |
| averageGameTime | SortOrder | No |
| averageTimeSpentDead | SortOrder | No |
| totalGameTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| kills | SortOrder | No |
| deaths | SortOrder | No |
| assists | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| identifier | SortOrder | No |
| type | SortOrder | No |
| timestamp | SortOrder | No |
| priority | SortOrder | No |
| retrieved | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| identifier | SortOrder | No |
| type | SortOrder | No |
| timestamp | SortOrder | No |
| priority | SortOrder | No |
| retrieved | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| identifier | SortOrder | No |
| type | SortOrder | No |
| timestamp | SortOrder | No |
| priority | SortOrder | No |
| retrieved | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | GameWhereInput | No |
| some | GameWhereInput | No |
| none | GameWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | PickBanWhereInput | No |
| some | PickBanWhereInput | No |
| none | PickBanWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ObjectiveWhereInput | No |
| some | ObjectiveWhereInput | No |
| none | ObjectiveWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| teamId | SortOrder | No |
| teamMatchId | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| teamId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| teamId | SortOrder | No |
| teamMatchId | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| teamId | SortOrder | No |
| teamMatchId | SortOrder | No |
| win | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| teamId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| lane | SortOrder | No |
| side | SortOrder | No |
| towerLocation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| lane | SortOrder | No |
| side | SortOrder | No |
| towerLocation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| lane | SortOrder | No |
| side | SortOrder | No |
| towerLocation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| subType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| subType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| type | SortOrder | No |
| subType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | RuneStyleWhereInput | Null | Yes |
| isNot | RuneStyleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| runeStyleId | SortOrder | No |
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| runeStyleId | SortOrder | No |
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| runeStyleId | SortOrder | No |
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| perk | SortOrder | No |
| var1 | SortOrder | No |
| var2 | SortOrder | No |
| var3 | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | RuneSelectionWhereInput | No |
| some | RuneSelectionWhereInput | No |
| none | RuneSelectionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerRunesId | SortOrder | No |
| description | SortOrder | No |
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerRunesId | SortOrder | No |
| description | SortOrder | No |
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| playerRunesId | SortOrder | No |
| description | SortOrder | No |
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| style | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutActivityInput | No |
| connect | ProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutActivityInput | No |
| upsert | ProfileUpsertWithoutActivityInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ProfileWhereUniqueInput | No |
| update | ProfileUpdateWithoutActivityInput | ProfileUncheckedUpdateWithoutActivityInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutChampionWinrateInput | No |
| connect | ProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutChampionWinrateInput | No |
| upsert | ProfileUpsertWithoutChampionWinrateInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ProfileWhereUniqueInput | No |
| update | ProfileUpdateWithoutChampionWinrateInput | ProfileUncheckedUpdateWithoutChampionWinrateInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutDuosInput | No |
| connect | ProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutDuosInput | No |
| upsert | ProfileUpsertWithoutDuosInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ProfileWhereUniqueInput | No |
| update | ProfileUpdateWithoutDuosInput | ProfileUncheckedUpdateWithoutDuosInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | PositionCreateWithoutEventInput | PositionCreateWithoutEventInput[] | PositionUncheckedCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | PositionCreateOrConnectWithoutEventInput | PositionCreateOrConnectWithoutEventInput[] | No |
| connect | PositionWhereUniqueInput | PositionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PositionCreateWithoutEventInput | PositionCreateWithoutEventInput[] | PositionUncheckedCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput[] | No |
| connectOrCreate | PositionCreateOrConnectWithoutEventInput | PositionCreateOrConnectWithoutEventInput[] | No |
| connect | PositionWhereUniqueInput | PositionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutFrom_Game_blueTeamInput | No |
| connect | TeamWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutFrom_Game_redTeamInput | No |
| connect | TeamWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] | No |
| connect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] | No |
| createMany | TeamCreateManyGameInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] | No |
| connect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] | No |
| createMany | TeamCreateManyGameInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutFrom_Game_blueTeamInput | No |
| upsert | TeamUpsertWithoutFrom_Game_blueTeamInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutFrom_Game_blueTeamInput | TeamUncheckedUpdateWithoutFrom_Game_blueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutFrom_Game_redTeamInput | No |
| upsert | TeamUpsertWithoutFrom_Game_redTeamInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutFrom_Game_redTeamInput | TeamUncheckedUpdateWithoutFrom_Game_redTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] | No |
| upsert | SourceUpsertWithWhereUniqueWithoutGameInput | SourceUpsertWithWhereUniqueWithoutGameInput[] | No |
| set | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| disconnect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| delete | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| connect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| update | SourceUpdateWithWhereUniqueWithoutGameInput | SourceUpdateWithWhereUniqueWithoutGameInput[] | No |
| updateMany | SourceUpdateManyWithWhereWithoutGameInput | SourceUpdateManyWithWhereWithoutGameInput[] | No |
| deleteMany | SourceScalarWhereInput | SourceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutGameInput | TeamUpsertWithWhereUniqueWithoutGameInput[] | No |
| createMany | TeamCreateManyGameInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutGameInput | TeamUpdateWithWhereUniqueWithoutGameInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutGameInput | TeamUpdateManyWithWhereWithoutGameInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SourceCreateWithoutGameInput | SourceCreateWithoutGameInput[] | SourceUncheckedCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | SourceCreateOrConnectWithoutGameInput | SourceCreateOrConnectWithoutGameInput[] | No |
| upsert | SourceUpsertWithWhereUniqueWithoutGameInput | SourceUpsertWithWhereUniqueWithoutGameInput[] | No |
| set | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| disconnect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| delete | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| connect | SourceWhereUniqueInput | SourceWhereUniqueInput[] | No |
| update | SourceUpdateWithWhereUniqueWithoutGameInput | SourceUpdateWithWhereUniqueWithoutGameInput[] | No |
| updateMany | SourceUpdateManyWithWhereWithoutGameInput | SourceUpdateManyWithWhereWithoutGameInput[] | No |
| deleteMany | SourceScalarWhereInput | SourceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGameInput | TeamCreateWithoutGameInput[] | TeamUncheckedCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGameInput | TeamCreateOrConnectWithoutGameInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutGameInput | TeamUpsertWithWhereUniqueWithoutGameInput[] | No |
| createMany | TeamCreateManyGameInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutGameInput | TeamUpdateWithWhereUniqueWithoutGameInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutGameInput | TeamUpdateManyWithWhereWithoutGameInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutObjectivesInput | No |
| connect | TeamWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutObjectivesInput | No |
| upsert | TeamUpsertWithoutObjectivesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutObjectivesInput | TeamUncheckedUpdateWithoutObjectivesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutPickBanInput | No |
| connect | TeamWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutPickBanInput | No |
| upsert | TeamUpsertWithoutPickBanInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutPickBanInput | TeamUncheckedUpdateWithoutPickBanInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerKillCreateWithoutKillerInput | PlayerKillCreateWithoutKillerInput[] | PlayerKillUncheckedCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput[] | No |
| connectOrCreate | PlayerKillCreateOrConnectWithoutKillerInput | PlayerKillCreateOrConnectWithoutKillerInput[] | No |
| connect | PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerKillCreateWithoutVictimInput | PlayerKillCreateWithoutVictimInput[] | PlayerKillUncheckedCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput[] | No |
| connectOrCreate | PlayerKillCreateOrConnectWithoutVictimInput | PlayerKillCreateOrConnectWithoutVictimInput[] | No |
| connect | PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutPlayerInput | No |
| connect | ProfileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerKillCreateWithoutKillerInput | PlayerKillCreateWithoutKillerInput[] | PlayerKillUncheckedCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput[] | No |
| connectOrCreate | PlayerKillCreateOrConnectWithoutKillerInput | PlayerKillCreateOrConnectWithoutKillerInput[] | No |
| connect | PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerKillCreateWithoutVictimInput | PlayerKillCreateWithoutVictimInput[] | PlayerKillUncheckedCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput[] | No |
| connectOrCreate | PlayerKillCreateOrConnectWithoutVictimInput | PlayerKillCreateOrConnectWithoutVictimInput[] | No |
| connect | PlayerKillWhereUniqueInput | PlayerKillWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutPlayersInput | TeamUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutPlayersInput | TeamUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutPlayersInput | TeamUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput | No |
| connectOrCreate | ProfileCreateOrConnectWithoutPlayerInput | No |
| upsert | ProfileUpsertWithoutPlayerInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ProfileWhereUniqueInput | No |
| update | ProfileUpdateWithoutPlayerInput | ProfileUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPlayersInput | TeamCreateWithoutPlayersInput[] | TeamUncheckedCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutPlayersInput | TeamCreateOrConnectWithoutPlayersInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutPlayersInput | TeamUpsertWithWhereUniqueWithoutPlayersInput[] | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutPlayersInput | TeamUpdateWithWhereUniqueWithoutPlayersInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutPlayersInput | TeamUpdateManyWithWhereWithoutPlayersInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEndOfGameStatsInput | No |
| connect | PlayerWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutFrom_PlayerEndOfGameStat_gameInput | GameUncheckedCreateWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| connectOrCreate | GameCreateOrConnectWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| connect | GameWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerRuneCreateWithoutPlayerEndOfGameStatInput | PlayerRuneUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| connectOrCreate | PlayerRuneCreateOrConnectWithoutPlayerEndOfGameStatInput | No |
| connect | PlayerRuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerItemCreateWithoutPlayerEndOfGameStatInput | PlayerItemUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| connectOrCreate | PlayerItemCreateOrConnectWithoutPlayerEndOfGameStatInput | No |
| connect | PlayerItemWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutEndOfGameStatsInput | No |
| upsert | PlayerUpsertWithoutEndOfGameStatsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutEndOfGameStatsInput | PlayerUncheckedUpdateWithoutEndOfGameStatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutFrom_PlayerEndOfGameStat_gameInput | GameUncheckedCreateWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| connectOrCreate | GameCreateOrConnectWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| upsert | GameUpsertWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GameWhereUniqueInput | No |
| update | GameUpdateWithoutFrom_PlayerEndOfGameStat_gameInput | GameUncheckedUpdateWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerRuneCreateWithoutPlayerEndOfGameStatInput | PlayerRuneUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| connectOrCreate | PlayerRuneCreateOrConnectWithoutPlayerEndOfGameStatInput | No |
| upsert | PlayerRuneUpsertWithoutPlayerEndOfGameStatInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerRuneWhereUniqueInput | No |
| update | PlayerRuneUpdateWithoutPlayerEndOfGameStatInput | PlayerRuneUncheckedUpdateWithoutPlayerEndOfGameStatInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerItemCreateWithoutPlayerEndOfGameStatInput | PlayerItemUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| connectOrCreate | PlayerItemCreateOrConnectWithoutPlayerEndOfGameStatInput | No |
| upsert | PlayerItemUpsertWithoutPlayerEndOfGameStatInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerItemWhereUniqueInput | No |
| update | PlayerItemUpdateWithoutPlayerEndOfGameStatInput | PlayerItemUncheckedUpdateWithoutPlayerEndOfGameStatInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutItemEventInput | PlayerCreateWithoutItemEventInput[] | PlayerUncheckedCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutItemEventInput | PlayerCreateOrConnectWithoutItemEventInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutItemEventInput | PlayerCreateWithoutItemEventInput[] | PlayerUncheckedCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutItemEventInput | PlayerCreateOrConnectWithoutItemEventInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutKillsInput | PlayerUpsertWithWhereUniqueWithoutKillsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutKillsInput | PlayerUpdateWithWhereUniqueWithoutKillsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutKillsInput | PlayerUpdateManyWithWhereWithoutKillsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutDeathsInput | PlayerUpsertWithWhereUniqueWithoutDeathsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutDeathsInput | PlayerUpdateWithWhereUniqueWithoutDeathsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutDeathsInput | PlayerUpdateManyWithWhereWithoutDeathsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutKillsInput | PlayerCreateWithoutKillsInput[] | PlayerUncheckedCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutKillsInput | PlayerCreateOrConnectWithoutKillsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutKillsInput | PlayerUpsertWithWhereUniqueWithoutKillsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutKillsInput | PlayerUpdateWithWhereUniqueWithoutKillsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutKillsInput | PlayerUpdateManyWithWhereWithoutKillsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutDeathsInput | PlayerCreateWithoutDeathsInput[] | PlayerUncheckedCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutDeathsInput | PlayerCreateOrConnectWithoutDeathsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutDeathsInput | PlayerUpsertWithWhereUniqueWithoutDeathsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutDeathsInput | PlayerUpdateWithWhereUniqueWithoutDeathsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutDeathsInput | PlayerUpdateManyWithWhereWithoutDeathsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput | No |
| connectOrCreate | PlayerEndOfGameStatCreateOrConnectWithoutPerksInput | No |
| connect | PlayerEndOfGameStatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput | No |
| connectOrCreate | PlayerEndOfGameStatCreateOrConnectWithoutPerksInput | No |
| connect | PlayerEndOfGameStatWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput | No |
| connectOrCreate | PlayerEndOfGameStatCreateOrConnectWithoutPerksInput | No |
| upsert | PlayerEndOfGameStatUpsertWithoutPerksInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerEndOfGameStatWhereUniqueInput | No |
| update | PlayerEndOfGameStatUpdateWithoutPerksInput | PlayerEndOfGameStatUncheckedUpdateWithoutPerksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput | No |
| connectOrCreate | PlayerEndOfGameStatCreateOrConnectWithoutPerksInput | No |
| upsert | PlayerEndOfGameStatUpsertWithoutPerksInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerEndOfGameStatWhereUniqueInput | No |
| update | PlayerEndOfGameStatUpdateWithoutPerksInput | PlayerEndOfGameStatUncheckedUpdateWithoutPerksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutSnapshotsInput | PlayerCreateWithoutSnapshotsInput[] | PlayerUncheckedCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutSnapshotsInput | PlayerCreateOrConnectWithoutSnapshotsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutSnapshotsInput | PlayerCreateWithoutSnapshotsInput[] | PlayerUncheckedCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutSnapshotsInput | PlayerCreateOrConnectWithoutSnapshotsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | Null | Yes |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutWardEventsInput | PlayerCreateWithoutWardEventsInput[] | PlayerUncheckedCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutWardEventsInput | PlayerCreateOrConnectWithoutWardEventsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutWardEventsInput | PlayerCreateWithoutWardEventsInput[] | PlayerUncheckedCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutWardEventsInput | PlayerCreateOrConnectWithoutWardEventsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPositionInput | EventUpsertWithWhereUniqueWithoutPositionInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPositionInput | EventUpdateWithWhereUniqueWithoutPositionInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPositionInput | EventUpdateManyWithWhereWithoutPositionInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | EventCreateWithoutPositionInput | EventCreateWithoutPositionInput[] | EventUncheckedCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput[] | No |
| connectOrCreate | EventCreateOrConnectWithoutPositionInput | EventCreateOrConnectWithoutPositionInput[] | No |
| upsert | EventUpsertWithWhereUniqueWithoutPositionInput | EventUpsertWithWhereUniqueWithoutPositionInput[] | No |
| set | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| disconnect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| delete | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| connect | EventWhereUniqueInput | EventWhereUniqueInput[] | No |
| update | EventUpdateWithWhereUniqueWithoutPositionInput | EventUpdateWithWhereUniqueWithoutPositionInput[] | No |
| updateMany | EventUpdateManyWithWhereWithoutPositionInput | EventUpdateManyWithWhereWithoutPositionInput[] | No |
| deleteMany | EventScalarWhereInput | EventScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutProfileInput | No |
| connect | PlayerWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ActivityCreateWithoutProfileInput | ActivityCreateWithoutProfileInput[] | ActivityUncheckedCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | ActivityCreateOrConnectWithoutProfileInput | ActivityCreateOrConnectWithoutProfileInput[] | No |
| createMany | ActivityCreateManyProfileInputEnvelope | No |
| connect | ActivityWhereUniqueInput | ActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] | No |
| createMany | DuoCreateManyProfileInputEnvelope | No |
| connect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutProfileInput | No |
| connect | PlayerWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ActivityCreateWithoutProfileInput | ActivityCreateWithoutProfileInput[] | ActivityUncheckedCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | ActivityCreateOrConnectWithoutProfileInput | ActivityCreateOrConnectWithoutProfileInput[] | No |
| createMany | ActivityCreateManyProfileInputEnvelope | No |
| connect | ActivityWhereUniqueInput | ActivityWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] | No |
| createMany | DuoCreateManyProfileInputEnvelope | No |
| connect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutProfileInput | No |
| upsert | PlayerUpsertWithoutProfileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutProfileInput | PlayerUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] | No |
| upsert | DuoUpsertWithWhereUniqueWithoutProfileInput | DuoUpsertWithWhereUniqueWithoutProfileInput[] | No |
| createMany | DuoCreateManyProfileInputEnvelope | No |
| set | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| disconnect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| delete | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| connect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| update | DuoUpdateWithWhereUniqueWithoutProfileInput | DuoUpdateWithWhereUniqueWithoutProfileInput[] | No |
| updateMany | DuoUpdateManyWithWhereWithoutProfileInput | DuoUpdateManyWithWhereWithoutProfileInput[] | No |
| deleteMany | DuoScalarWhereInput | DuoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| connectOrCreate | PlayerCreateOrConnectWithoutProfileInput | No |
| upsert | PlayerUpsertWithoutProfileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutProfileInput | PlayerUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DuoCreateWithoutProfileInput | DuoCreateWithoutProfileInput[] | DuoUncheckedCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput[] | No |
| connectOrCreate | DuoCreateOrConnectWithoutProfileInput | DuoCreateOrConnectWithoutProfileInput[] | No |
| upsert | DuoUpsertWithWhereUniqueWithoutProfileInput | DuoUpsertWithWhereUniqueWithoutProfileInput[] | No |
| createMany | DuoCreateManyProfileInputEnvelope | No |
| set | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| disconnect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| delete | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| connect | DuoWhereUniqueInput | DuoWhereUniqueInput[] | No |
| update | DuoUpdateWithWhereUniqueWithoutProfileInput | DuoUpdateWithWhereUniqueWithoutProfileInput[] | No |
| updateMany | DuoUpdateManyWithWhereWithoutProfileInput | DuoUpdateManyWithWhereWithoutProfileInput[] | No |
| deleteMany | DuoScalarWhereInput | DuoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutSourceInput | GameUpsertWithWhereUniqueWithoutSourceInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutSourceInput | GameUpdateWithWhereUniqueWithoutSourceInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutSourceInput | GameUpdateManyWithWhereWithoutSourceInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutSourceInput | GameCreateWithoutSourceInput[] | GameUncheckedCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutSourceInput | GameCreateOrConnectWithoutSourceInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutSourceInput | GameUpsertWithWhereUniqueWithoutSourceInput[] | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutSourceInput | GameUpdateWithWhereUniqueWithoutSourceInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutSourceInput | GameUpdateManyWithWhereWithoutSourceInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] | No |
| createMany | PickBanCreateManyTeamInputEnvelope | No |
| connect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput | No |
| connectOrCreate | GameCreateOrConnectWithoutFrom_Team_gameInput | No |
| connect | GameWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObjectiveCreateWithoutTeamInput | ObjectiveCreateWithoutTeamInput[] | ObjectiveUncheckedCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | ObjectiveCreateOrConnectWithoutTeamInput | ObjectiveCreateOrConnectWithoutTeamInput[] | No |
| createMany | ObjectiveCreateManyTeamInputEnvelope | No |
| connect | ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] | No |
| createMany | GameCreateManyBlueTeamInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] | No |
| createMany | GameCreateManyRedTeamInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] | No |
| createMany | PickBanCreateManyTeamInputEnvelope | No |
| connect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ObjectiveCreateWithoutTeamInput | ObjectiveCreateWithoutTeamInput[] | ObjectiveUncheckedCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | ObjectiveCreateOrConnectWithoutTeamInput | ObjectiveCreateOrConnectWithoutTeamInput[] | No |
| createMany | ObjectiveCreateManyTeamInputEnvelope | No |
| connect | ObjectiveWhereUniqueInput | ObjectiveWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] | No |
| createMany | GameCreateManyBlueTeamInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] | No |
| createMany | GameCreateManyRedTeamInputEnvelope | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] | No |
| upsert | PickBanUpsertWithWhereUniqueWithoutTeamInput | PickBanUpsertWithWhereUniqueWithoutTeamInput[] | No |
| createMany | PickBanCreateManyTeamInputEnvelope | No |
| set | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| disconnect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| delete | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| connect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| update | PickBanUpdateWithWhereUniqueWithoutTeamInput | PickBanUpdateWithWhereUniqueWithoutTeamInput[] | No |
| updateMany | PickBanUpdateManyWithWhereWithoutTeamInput | PickBanUpdateManyWithWhereWithoutTeamInput[] | No |
| deleteMany | PickBanScalarWhereInput | PickBanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput | No |
| connectOrCreate | GameCreateOrConnectWithoutFrom_Team_gameInput | No |
| upsert | GameUpsertWithoutFrom_Team_gameInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GameWhereUniqueInput | No |
| update | GameUpdateWithoutFrom_Team_gameInput | GameUncheckedUpdateWithoutFrom_Team_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutTeamsInput | PlayerUpsertWithWhereUniqueWithoutTeamsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutTeamsInput | PlayerUpdateWithWhereUniqueWithoutTeamsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutTeamsInput | PlayerUpdateManyWithWhereWithoutTeamsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutBlueTeamInput | GameUpsertWithWhereUniqueWithoutBlueTeamInput[] | No |
| createMany | GameCreateManyBlueTeamInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutBlueTeamInput | GameUpdateWithWhereUniqueWithoutBlueTeamInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutBlueTeamInput | GameUpdateManyWithWhereWithoutBlueTeamInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutRedTeamInput | GameUpsertWithWhereUniqueWithoutRedTeamInput[] | No |
| createMany | GameCreateManyRedTeamInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutRedTeamInput | GameUpdateWithWhereUniqueWithoutRedTeamInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutRedTeamInput | GameUpdateManyWithWhereWithoutRedTeamInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PickBanCreateWithoutTeamInput | PickBanCreateWithoutTeamInput[] | PickBanUncheckedCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput[] | No |
| connectOrCreate | PickBanCreateOrConnectWithoutTeamInput | PickBanCreateOrConnectWithoutTeamInput[] | No |
| upsert | PickBanUpsertWithWhereUniqueWithoutTeamInput | PickBanUpsertWithWhereUniqueWithoutTeamInput[] | No |
| createMany | PickBanCreateManyTeamInputEnvelope | No |
| set | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| disconnect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| delete | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| connect | PickBanWhereUniqueInput | PickBanWhereUniqueInput[] | No |
| update | PickBanUpdateWithWhereUniqueWithoutTeamInput | PickBanUpdateWithWhereUniqueWithoutTeamInput[] | No |
| updateMany | PickBanUpdateManyWithWhereWithoutTeamInput | PickBanUpdateManyWithWhereWithoutTeamInput[] | No |
| deleteMany | PickBanScalarWhereInput | PickBanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutTeamsInput | PlayerCreateWithoutTeamsInput[] | PlayerUncheckedCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutTeamsInput | PlayerCreateOrConnectWithoutTeamsInput[] | No |
| upsert | PlayerUpsertWithWhereUniqueWithoutTeamsInput | PlayerUpsertWithWhereUniqueWithoutTeamsInput[] | No |
| set | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| disconnect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| delete | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| update | PlayerUpdateWithWhereUniqueWithoutTeamsInput | PlayerUpdateWithWhereUniqueWithoutTeamsInput[] | No |
| updateMany | PlayerUpdateManyWithWhereWithoutTeamsInput | PlayerUpdateManyWithWhereWithoutTeamsInput[] | No |
| deleteMany | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutBlueTeamInput | GameCreateWithoutBlueTeamInput[] | GameUncheckedCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutBlueTeamInput | GameCreateOrConnectWithoutBlueTeamInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutBlueTeamInput | GameUpsertWithWhereUniqueWithoutBlueTeamInput[] | No |
| createMany | GameCreateManyBlueTeamInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutBlueTeamInput | GameUpdateWithWhereUniqueWithoutBlueTeamInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutBlueTeamInput | GameUpdateManyWithWhereWithoutBlueTeamInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GameCreateWithoutRedTeamInput | GameCreateWithoutRedTeamInput[] | GameUncheckedCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput[] | No |
| connectOrCreate | GameCreateOrConnectWithoutRedTeamInput | GameCreateOrConnectWithoutRedTeamInput[] | No |
| upsert | GameUpsertWithWhereUniqueWithoutRedTeamInput | GameUpsertWithWhereUniqueWithoutRedTeamInput[] | No |
| createMany | GameCreateManyRedTeamInputEnvelope | No |
| set | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| disconnect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| delete | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| connect | GameWhereUniqueInput | GameWhereUniqueInput[] | No |
| update | GameUpdateWithWhereUniqueWithoutRedTeamInput | GameUpdateWithWhereUniqueWithoutRedTeamInput[] | No |
| updateMany | GameUpdateManyWithWhereWithoutRedTeamInput | GameUpdateManyWithWhereWithoutRedTeamInput[] | No |
| deleteMany | GameScalarWhereInput | GameScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutMonsterKillsInput | PlayerCreateWithoutMonsterKillsInput[] | PlayerUncheckedCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutMonsterKillsInput | PlayerCreateOrConnectWithoutMonsterKillsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerCreateWithoutMonsterKillsInput | PlayerCreateWithoutMonsterKillsInput[] | PlayerUncheckedCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput[] | No |
| connectOrCreate | PlayerCreateOrConnectWithoutMonsterKillsInput | PlayerCreateOrConnectWithoutMonsterKillsInput[] | No |
| connect | PlayerWhereUniqueInput | PlayerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput | No |
| connectOrCreate | RuneStyleCreateOrConnectWithoutSelectionInput | No |
| connect | RuneStyleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput | No |
| connectOrCreate | RuneStyleCreateOrConnectWithoutSelectionInput | No |
| upsert | RuneStyleUpsertWithoutSelectionInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RuneStyleWhereUniqueInput | No |
| update | RuneStyleUpdateWithoutSelectionInput | RuneStyleUncheckedUpdateWithoutSelectionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput | No |
| connectOrCreate | PlayerRuneCreateOrConnectWithoutRuneStyleInput | No |
| connect | PlayerRuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput | No |
| connectOrCreate | PlayerRuneCreateOrConnectWithoutRuneStyleInput | No |
| upsert | PlayerRuneUpsertWithoutRuneStyleInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PlayerRuneWhereUniqueInput | No |
| update | PlayerRuneUpdateWithoutRuneStyleInput | PlayerRuneUncheckedUpdateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerWardEventWardTypeType | Null | Yes |
| in | PlayerWardEventWardTypeType[] | Null | Yes |
| notIn | PlayerWardEventWardTypeType[] | Null | Yes |
| not | PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | PlayerWardEventWardTypeType | Null | Yes |
| in | PlayerWardEventWardTypeType[] | Null | Yes |
| notIn | PlayerWardEventWardTypeType[] | Null | Yes |
| not | PlayerWardEventWardTypeType | NestedEnumPlayerWardEventWardTypeTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | No |
| _max | NestedEnumPlayerWardEventWardTypeTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| championWinrate | ChampionWinrateCreateNestedManyWithoutProfileInput | No |
| duos | DuoCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerUncheckedCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| championWinrate | ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput | No |
| duos | DuoUncheckedCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| create | ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProfileUpdateWithoutActivityInput | ProfileUncheckedUpdateWithoutActivityInput | No |
| create | ProfileCreateWithoutActivityInput | ProfileUncheckedCreateWithoutActivityInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityCreateNestedManyWithoutProfileInput | No |
| duos | DuoCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerUncheckedCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityUncheckedCreateNestedManyWithoutProfileInput | No |
| duos | DuoUncheckedCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| create | ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProfileUpdateWithoutChampionWinrateInput | ProfileUncheckedUpdateWithoutChampionWinrateInput | No |
| create | ProfileCreateWithoutChampionWinrateInput | ProfileUncheckedCreateWithoutChampionWinrateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| player | PlayerUncheckedCreateNestedOneWithoutProfileInput | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityUncheckedCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| create | ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProfileUpdateWithoutDuosInput | ProfileUncheckedUpdateWithoutDuosInput | No |
| create | ProfileCreateWithoutDuosInput | ProfileUncheckedCreateWithoutDuosInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| playerSnapshot | PlayerSnapshotCreateNestedManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| playerSnapshot | PlayerSnapshotUncheckedCreateNestedManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| create | PositionCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| update | PositionUpdateWithoutEventInput | PositionUncheckedUpdateWithoutEventInput | No |
| create | PositionCreateWithoutEventInput | PositionUncheckedCreateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| data | PositionUpdateWithoutEventInput | PositionUncheckedUpdateWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionScalarWhereInput | No |
| data | PositionUpdateManyMutationInput | PositionUncheckedUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PositionScalarWhereInput | PositionScalarWhereInput[] | No |
| OR | PositionScalarWhereInput[] | No |
| NOT | PositionScalarWhereInput | PositionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| x | IntNullableFilter | Int | Null | Yes |
| y | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| gameId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| gameId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SourceWhereUniqueInput | No |
| create | SourceCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedOneWithoutEndOfGameStatsInput | No |
| perks | PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| items | PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| create | PlayerEndOfGameStatCreateWithoutGameInput | PlayerEndOfGameStatUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PlayerEndOfGameStatCreateManyGameInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TeamCreateManyGameInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | TeamUpdateWithoutFrom_Game_blueTeamInput | TeamUncheckedUpdateWithoutFrom_Game_blueTeamInput | No |
| create | TeamCreateWithoutFrom_Game_blueTeamInput | TeamUncheckedCreateWithoutFrom_Game_blueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TeamUpdateWithoutFrom_Game_redTeamInput | TeamUncheckedUpdateWithoutFrom_Game_redTeamInput | No |
| create | TeamCreateWithoutFrom_Game_redTeamInput | TeamUncheckedCreateWithoutFrom_Game_redTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SourceWhereUniqueInput | No |
| update | SourceUpdateWithoutGameInput | SourceUncheckedUpdateWithoutGameInput | No |
| create | SourceCreateWithoutGameInput | SourceUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SourceWhereUniqueInput | No |
| data | SourceUpdateWithoutGameInput | SourceUncheckedUpdateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SourceScalarWhereInput | No |
| data | SourceUpdateManyMutationInput | SourceUncheckedUpdateManyWithoutSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SourceScalarWhereInput | SourceScalarWhereInput[] | No |
| OR | SourceScalarWhereInput[] | No |
| NOT | SourceScalarWhereInput | SourceScalarWhereInput[] | No |
| id | StringFilter | String | No |
| api | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| update | PlayerEndOfGameStatUpdateWithoutGameInput | PlayerEndOfGameStatUncheckedUpdateWithoutGameInput | No |
| create | PlayerEndOfGameStatCreateWithoutGameInput | PlayerEndOfGameStatUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| data | PlayerEndOfGameStatUpdateWithoutGameInput | PlayerEndOfGameStatUncheckedUpdateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatScalarWhereInput | No |
| data | PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] | No |
| OR | PlayerEndOfGameStatScalarWhereInput[] | No |
| NOT | PlayerEndOfGameStatScalarWhereInput | PlayerEndOfGameStatScalarWhereInput[] | No |
| id | StringFilter | String | No |
| playerId | StringNullableFilter | String | Null | Yes |
| gameId | StringNullableFilter | String | Null | Yes |
| perksId | StringNullableFilter | String | Null | Yes |
| itemsId | StringNullableFilter | String | Null | Yes |
| assists | IntNullableFilter | Int | Null | Yes |
| baronKills | IntNullableFilter | Int | Null | Yes |
| bountyLevel | IntNullableFilter | Int | Null | Yes |
| championExperience | IntNullableFilter | Int | Null | Yes |
| championLevel | IntNullableFilter | Int | Null | Yes |
| championId | IntNullableFilter | Int | Null | Yes |
| championName | StringFilter | String | No |
| championTransform | IntNullableFilter | Int | Null | Yes |
| consumablesPurchased | IntNullableFilter | Int | Null | Yes |
| damageDealtToBuildings | IntNullableFilter | Int | Null | Yes |
| damageDealtToObjectives | IntNullableFilter | Int | Null | Yes |
| damageDealtToTurrets | IntNullableFilter | Int | Null | Yes |
| damageSelfMitigated | IntNullableFilter | Int | Null | Yes |
| deaths | IntNullableFilter | Int | Null | Yes |
| detectorWardsPlaced | IntNullableFilter | Int | Null | Yes |
| doubleKills | IntNullableFilter | Int | Null | Yes |
| dragonKills | IntNullableFilter | Int | Null | Yes |
| firstBlood | BoolFilter | Boolean | No |
| firstBloodAssist | BoolFilter | Boolean | No |
| firstTowerKill | BoolFilter | Boolean | No |
| firstTowerAssist | BoolFilter | Boolean | No |
| gameEndedInEarlySurrender | BoolFilter | Boolean | No |
| gameEndedInSurrender | BoolFilter | Boolean | No |
| goldEarned | IntNullableFilter | Int | Null | Yes |
| goldSpent | IntNullableFilter | Int | Null | Yes |
| individualPosition | StringFilter | String | No |
| inhibitorKills | IntNullableFilter | Int | Null | Yes |
| inhibitorTakedowns | IntNullableFilter | Int | Null | Yes |
| inhibitorsLost | IntNullableFilter | Int | Null | Yes |
| item0 | IntNullableFilter | Int | Null | Yes |
| item1 | IntNullableFilter | Int | Null | Yes |
| item2 | IntNullableFilter | Int | Null | Yes |
| item3 | IntNullableFilter | Int | Null | Yes |
| item4 | IntNullableFilter | Int | Null | Yes |
| item5 | IntNullableFilter | Int | Null | Yes |
| item6 | IntNullableFilter | Int | Null | Yes |
| itemsPurchased | IntNullableFilter | Int | Null | Yes |
| killingSprees | IntNullableFilter | Int | Null | Yes |
| kills | IntNullableFilter | Int | Null | Yes |
| lane | StringFilter | String | No |
| largestCriticalStrike | IntNullableFilter | Int | Null | Yes |
| largestKillingSpree | IntNullableFilter | Int | Null | Yes |
| largestMultiKill | IntNullableFilter | Int | Null | Yes |
| longestTimeSpentLiving | IntNullableFilter | Int | Null | Yes |
| magicDamageDealt | IntNullableFilter | Int | Null | Yes |
| magicDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| magicDamageTaken | IntNullableFilter | Int | Null | Yes |
| neutralMinionsKilled | IntNullableFilter | Int | Null | Yes |
| nexusKills | IntNullableFilter | Int | Null | Yes |
| nexusLost | IntNullableFilter | Int | Null | Yes |
| nexusTakedowns | IntNullableFilter | Int | Null | Yes |
| objectivesStolen | IntNullableFilter | Int | Null | Yes |
| objectivesStolenAssists | IntNullableFilter | Int | Null | Yes |
| participantId | IntNullableFilter | Int | Null | Yes |
| pentaKills | IntNullableFilter | Int | Null | Yes |
| physicalDamageDealt | IntNullableFilter | Int | Null | Yes |
| physicalDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| physicalDamageTaken | IntNullableFilter | Int | Null | Yes |
| quadraKills | IntNullableFilter | Int | Null | Yes |
| riotIdName | StringFilter | String | No |
| riotIdTagline | StringFilter | String | No |
| role | StringFilter | String | No |
| sightWardsBoughtInGame | IntNullableFilter | Int | Null | Yes |
| spell1Casts | IntNullableFilter | Int | Null | Yes |
| spell2Casts | IntNullableFilter | Int | Null | Yes |
| spell3Casts | IntNullableFilter | Int | Null | Yes |
| spell4Casts | IntNullableFilter | Int | Null | Yes |
| summoner1Casts | IntNullableFilter | Int | Null | Yes |
| summoner1Id | IntNullableFilter | Int | Null | Yes |
| summoner2Casts | IntNullableFilter | Int | Null | Yes |
| summoner2Id | IntNullableFilter | Int | Null | Yes |
| summonerLevel | IntNullableFilter | Int | Null | Yes |
| summonerName | StringFilter | String | No |
| teamEarlySurrendered | BoolFilter | Boolean | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| teamPosition | StringFilter | String | No |
| timeCCingOthers | IntNullableFilter | Int | Null | Yes |
| timePlayed | IntNullableFilter | Int | Null | Yes |
| totalDamageDealt | IntNullableFilter | Int | Null | Yes |
| totalDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| totalDamageShieldedOnTeammates | IntNullableFilter | Int | Null | Yes |
| totalDamageTaken | IntNullableFilter | Int | Null | Yes |
| totalHeal | IntNullableFilter | Int | Null | Yes |
| totalHealsOnTeammates | IntNullableFilter | Int | Null | Yes |
| totalMinionsKilled | IntNullableFilter | Int | Null | Yes |
| totalTimeCCDealt | IntNullableFilter | Int | Null | Yes |
| totalTimeSpentDead | IntNullableFilter | Int | Null | Yes |
| totalUnitsHealed | IntNullableFilter | Int | Null | Yes |
| tripleKills | IntNullableFilter | Int | Null | Yes |
| trueDamageDealt | IntNullableFilter | Int | Null | Yes |
| trueDamageDealtToChampions | IntNullableFilter | Int | Null | Yes |
| trueDamageTaken | IntNullableFilter | Int | Null | Yes |
| turretsKilled | IntNullableFilter | Int | Null | Yes |
| turretTakedowns | IntNullableFilter | Int | Null | Yes |
| turretsLost | IntNullableFilter | Int | Null | Yes |
| unrealKills | IntNullableFilter | Int | Null | Yes |
| visionScore | IntNullableFilter | Int | Null | Yes |
| visionWardsBoughtInGame | IntNullableFilter | Int | Null | Yes |
| wardsKilled | IntNullableFilter | Int | Null | Yes |
| wardsPlaced | IntNullableFilter | Int | Null | Yes |
| win | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutGameInput | TeamUncheckedUpdateWithoutGameInput | No |
| create | TeamCreateWithoutGameInput | TeamUncheckedCreateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutGameInput | TeamUncheckedUpdateWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutFrom_Team_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| OR | TeamScalarWhereInput[] | No |
| NOT | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| id | StringFilter | String | No |
| gameId | StringNullableFilter | String | Null | Yes |
| teamId | IntNullableFilter | Int | Null | Yes |
| teamMatchId | StringFilter | String | No |
| win | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| gameId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TeamUpdateWithoutObjectivesInput | TeamUncheckedUpdateWithoutObjectivesInput | No |
| create | TeamCreateWithoutObjectivesInput | TeamUncheckedCreateWithoutObjectivesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| players | PlayerCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | Null | Yes |
| players | PlayerUncheckedCreateNestedManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TeamUpdateWithoutPickBanInput | TeamUncheckedUpdateWithoutPickBanInput | No |
| create | TeamCreateWithoutPickBanInput | TeamUncheckedCreateWithoutPickBanInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| victim | PlayerCreateNestedManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| victim | PlayerUncheckedCreateNestedManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| create | PlayerKillCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerCreateNestedManyWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| killer | PlayerUncheckedCreateNestedManyWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| create | PlayerKillCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanCreateNestedManyWithoutTeamInput | No |
| game | GameCreateNestedOneWithoutFrom_Team_gameInput | No |
| objectives | ObjectiveCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| pickBan | PickBanUncheckedCreateNestedManyWithoutTeamInput | No |
| gameId | String | Null | Yes |
| objectives | ObjectiveUncheckedCreateNestedManyWithoutTeamInput | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| from_Game_blueTeam | GameUncheckedCreateNestedManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedCreateNestedManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateCreateNestedManyWithoutProfileInput | No |
| duos | DuoCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| lastUpdate | DateTime | No |
| kills | Int | Null | Yes |
| deaths | Int | Null | Yes |
| assists | Int | Null | Yes |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| activity | ActivityUncheckedCreateNestedManyWithoutProfileInput | No |
| championWinrate | ChampionWinrateUncheckedCreateNestedManyWithoutProfileInput | No |
| duos | DuoUncheckedCreateNestedManyWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ProfileWhereUniqueInput | No |
| create | ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | No |
| create | TeamMonsterKillCreateWithoutKillerInput | TeamMonsterKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | No |
| create | TeamBuildingKillCreateWithoutKillerInput | TeamBuildingKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| itemId | Int | Null | Yes |
| name | String | No |
| undoId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| itemId | Int | Null | Yes |
| name | String | No |
| undoId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | No |
| create | PlayerItemEventCreateWithoutPlayerInput | PlayerItemEventUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| game | GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| perks | PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| items | PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| create | PlayerEndOfGameStatCreateWithoutPlayerInput | PlayerEndOfGameStatUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PlayerEndOfGameStatCreateManyPlayerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| position | PositionCreateNestedManyWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| position | PositionUncheckedCreateNestedManyWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| create | PlayerSnapshotCreateWithoutPlayerInput | PlayerSnapshotUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | No |
| create | PlayerWardEventCreateWithoutPlayerInput | PlayerWardEventUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| slot | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| slot | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereUniqueInput | No |
| create | PlayerSkillLevelUpEventCreateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| update | PlayerKillUpdateWithoutKillerInput | PlayerKillUncheckedUpdateWithoutKillerInput | No |
| create | PlayerKillCreateWithoutKillerInput | PlayerKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| data | PlayerKillUpdateWithoutKillerInput | PlayerKillUncheckedUpdateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillScalarWhereInput | No |
| data | PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] | No |
| OR | PlayerKillScalarWhereInput[] | No |
| NOT | PlayerKillScalarWhereInput | PlayerKillScalarWhereInput[] | No |
| id | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| update | PlayerKillUpdateWithoutVictimInput | PlayerKillUncheckedUpdateWithoutVictimInput | No |
| create | PlayerKillCreateWithoutVictimInput | PlayerKillUncheckedCreateWithoutVictimInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillWhereUniqueInput | No |
| data | PlayerKillUpdateWithoutVictimInput | PlayerKillUncheckedUpdateWithoutVictimInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerKillScalarWhereInput | No |
| data | PlayerKillUpdateManyMutationInput | PlayerKillUncheckedUpdateManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutPlayersInput | TeamUncheckedUpdateWithoutPlayersInput | No |
| create | TeamCreateWithoutPlayersInput | TeamUncheckedCreateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutPlayersInput | TeamUncheckedUpdateWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ProfileUpdateWithoutPlayerInput | ProfileUncheckedUpdateWithoutPlayerInput | No |
| create | ProfileCreateWithoutPlayerInput | ProfileUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | No |
| update | TeamMonsterKillUpdateWithoutKillerInput | TeamMonsterKillUncheckedUpdateWithoutKillerInput | No |
| create | TeamMonsterKillCreateWithoutKillerInput | TeamMonsterKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamMonsterKillWhereUniqueInput | No |
| data | TeamMonsterKillUpdateWithoutKillerInput | TeamMonsterKillUncheckedUpdateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamMonsterKillScalarWhereInput | No |
| data | TeamMonsterKillUpdateManyMutationInput | TeamMonsterKillUncheckedUpdateManyWithoutMonsterKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] | No |
| OR | TeamMonsterKillScalarWhereInput[] | No |
| NOT | TeamMonsterKillScalarWhereInput | TeamMonsterKillScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| subType | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | No |
| update | TeamBuildingKillUpdateWithoutKillerInput | TeamBuildingKillUncheckedUpdateWithoutKillerInput | No |
| create | TeamBuildingKillCreateWithoutKillerInput | TeamBuildingKillUncheckedCreateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamBuildingKillWhereUniqueInput | No |
| data | TeamBuildingKillUpdateWithoutKillerInput | TeamBuildingKillUncheckedUpdateWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamBuildingKillScalarWhereInput | No |
| data | TeamBuildingKillUpdateManyMutationInput | TeamBuildingKillUncheckedUpdateManyWithoutBuildingKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] | No |
| OR | TeamBuildingKillScalarWhereInput[] | No |
| NOT | TeamBuildingKillScalarWhereInput | TeamBuildingKillScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| lane | StringFilter | String | No |
| side | StringFilter | String | No |
| towerLocation | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | No |
| update | PlayerItemEventUpdateWithoutPlayerInput | PlayerItemEventUncheckedUpdateWithoutPlayerInput | No |
| create | PlayerItemEventCreateWithoutPlayerInput | PlayerItemEventUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerItemEventWhereUniqueInput | No |
| data | PlayerItemEventUpdateWithoutPlayerInput | PlayerItemEventUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerItemEventScalarWhereInput | No |
| data | PlayerItemEventUpdateManyMutationInput | PlayerItemEventUncheckedUpdateManyWithoutItemEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] | No |
| OR | PlayerItemEventScalarWhereInput[] | No |
| NOT | PlayerItemEventScalarWhereInput | PlayerItemEventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| itemId | IntNullableFilter | Int | Null | Yes |
| name | StringFilter | String | No |
| undoId | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| data | PlayerEndOfGameStatUpdateWithoutPlayerInput | PlayerEndOfGameStatUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatScalarWhereInput | No |
| data | PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyWithoutEndOfGameStatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| update | PlayerSnapshotUpdateWithoutPlayerInput | PlayerSnapshotUncheckedUpdateWithoutPlayerInput | No |
| create | PlayerSnapshotCreateWithoutPlayerInput | PlayerSnapshotUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| data | PlayerSnapshotUpdateWithoutPlayerInput | PlayerSnapshotUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotScalarWhereInput | No |
| data | PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] | No |
| OR | PlayerSnapshotScalarWhereInput[] | No |
| NOT | PlayerSnapshotScalarWhereInput | PlayerSnapshotScalarWhereInput[] | No |
| id | StringFilter | String | No |
| timestamp | FloatNullableFilter | Float | Null | Yes |
| currentGold | IntNullableFilter | Int | Null | Yes |
| totalGold | IntNullableFilter | Int | Null | Yes |
| totalGoldDiff | IntNullableFilter | Int | Null | Yes |
| xp | IntNullableFilter | Int | Null | Yes |
| xpDiff | IntNullableFilter | Int | Null | Yes |
| level | IntNullableFilter | Int | Null | Yes |
| cs | IntNullableFilter | Int | Null | Yes |
| csDiff | IntNullableFilter | Int | Null | Yes |
| monstersKilled | IntNullableFilter | Int | Null | Yes |
| monstersKilledDiff | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | No |
| update | PlayerWardEventUpdateWithoutPlayerInput | PlayerWardEventUncheckedUpdateWithoutPlayerInput | No |
| create | PlayerWardEventCreateWithoutPlayerInput | PlayerWardEventUncheckedCreateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWardEventWhereUniqueInput | No |
| data | PlayerWardEventUpdateWithoutPlayerInput | PlayerWardEventUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWardEventScalarWhereInput | No |
| data | PlayerWardEventUpdateManyMutationInput | PlayerWardEventUncheckedUpdateManyWithoutWardEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerWardEventScalarWhereInput | PlayerWardEventScalarWhereInput[] | No |
| OR | PlayerWardEventScalarWhereInput[] | No |
| NOT | PlayerWardEventScalarWhereInput | PlayerWardEventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| wardType | EnumPlayerWardEventWardTypeTypeNullableFilter | PlayerWardEventWardTypeType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSkillLevelUpEventWhereUniqueInput | No |
| data | PlayerSkillLevelUpEventUpdateWithoutPlayerInput | PlayerSkillLevelUpEventUncheckedUpdateWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSkillLevelUpEventScalarWhereInput | No |
| data | PlayerSkillLevelUpEventUpdateManyMutationInput | PlayerSkillLevelUpEventUncheckedUpdateManyWithoutSkillLevelUpEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerSkillLevelUpEventScalarWhereInput | PlayerSkillLevelUpEventScalarWhereInput[] | No |
| OR | PlayerSkillLevelUpEventScalarWhereInput[] | No |
| NOT | PlayerSkillLevelUpEventScalarWhereInput | PlayerSkillLevelUpEventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| type | StringFilter | String | No |
| slot | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeam | TeamCreateNestedOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamCreateNestedOneWithoutFrom_Game_redTeamInput | No |
| source | SourceCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_Team_game | TeamCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| redTeamId | String | Null | Yes |
| source | SourceUncheckedCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_Team_game | TeamUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutFrom_PlayerEndOfGameStat_gameInput | GameUncheckedCreateWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyle | RuneStyleCreateNestedManyWithoutPlayerRunesInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyle | RuneStyleUncheckedCreateNestedManyWithoutPlayerRunesInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerRuneWhereUniqueInput | No |
| create | PlayerRuneCreateWithoutPlayerEndOfGameStatInput | PlayerRuneUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | Null | Yes |
| itemId | Int | Null | Yes |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | Null | Yes |
| itemId | Int | Null | Yes |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerItemWhereUniqueInput | No |
| create | PlayerItemCreateWithoutPlayerEndOfGameStatInput | PlayerItemUncheckedCreateWithoutPlayerEndOfGameStatInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PlayerUpdateWithoutEndOfGameStatsInput | PlayerUncheckedUpdateWithoutEndOfGameStatsInput | No |
| create | PlayerCreateWithoutEndOfGameStatsInput | PlayerUncheckedCreateWithoutEndOfGameStatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeam | TeamUpdateOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamUpdateOneWithoutFrom_Game_redTeamInput | No |
| source | SourceUpdateManyWithoutGameInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| from_Team_game | TeamUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| runeStyle | RuneStyleUpdateManyWithoutPlayerRunesInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| runeStyle | RuneStyleUncheckedUpdateManyWithoutPlayerRunesInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedOneWithoutEndOfGameStatsInput | No |
| game | GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| perks | PlayerRuneCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| create | PlayerEndOfGameStatCreateWithoutItemsInput | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PlayerEndOfGameStatCreateManyItemsInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| update | PlayerEndOfGameStatUpdateWithoutItemsInput | PlayerEndOfGameStatUncheckedUpdateWithoutItemsInput | No |
| create | PlayerEndOfGameStatCreateWithoutItemsInput | PlayerEndOfGameStatUncheckedCreateWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| data | PlayerEndOfGameStatUpdateWithoutItemsInput | PlayerEndOfGameStatUncheckedUpdateWithoutItemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatScalarWhereInput | No |
| data | PlayerEndOfGameStatUpdateManyMutationInput | PlayerEndOfGameStatUncheckedUpdateManyWithoutPlayerEndOfGameStatInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutItemEventInput | PlayerUncheckedUpdateWithoutItemEventInput | No |
| create | PlayerCreateWithoutItemEventInput | PlayerUncheckedCreateWithoutItemEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutItemEventInput | PlayerUncheckedUpdateWithoutItemEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| OR | PlayerScalarWhereInput[] | No |
| NOT | PlayerScalarWhereInput | PlayerScalarWhereInput[] | No |
| id | StringFilter | String | No |
| puuid | StringFilter | String | No |
| accountId | StringFilter | String | No |
| platformId | StringFilter | String | No |
| summonerId | StringFilter | String | No |
| summonerName | StringFilter | String | No |
| summonerLevel | IntNullableFilter | Int | Null | Yes |
| profileIconId | IntNullableFilter | Int | Null | Yes |
| revisionDate | StringFilter | String | No |
| profileId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutKillsInput | PlayerUncheckedUpdateWithoutKillsInput | No |
| create | PlayerCreateWithoutKillsInput | PlayerUncheckedCreateWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutKillsInput | PlayerUncheckedUpdateWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutDeathsInput | PlayerUncheckedUpdateWithoutDeathsInput | No |
| create | PlayerCreateWithoutDeathsInput | PlayerUncheckedCreateWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutDeathsInput | PlayerUncheckedUpdateWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutVictimInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| player | PlayerCreateNestedOneWithoutEndOfGameStatsInput | No |
| game | GameCreateNestedOneWithoutFrom_PlayerEndOfGameStat_gameInput | No |
| items | PlayerItemCreateNestedOneWithoutPlayerEndOfGameStatInput | No |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| gameId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerEndOfGameStatWhereUniqueInput | No |
| create | PlayerEndOfGameStatCreateWithoutPerksInput | PlayerEndOfGameStatUncheckedCreateWithoutPerksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| selection | RuneSelectionCreateNestedManyWithoutRuneStyleInput | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| selection | RuneSelectionUncheckedCreateNestedManyWithoutRuneStyleInput | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RuneStyleWhereUniqueInput | No |
| create | RuneStyleCreateWithoutPlayerRunesInput | RuneStyleUncheckedCreateWithoutPlayerRunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RuneStyleCreateManyPlayerRunesInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | RuneStyleWhereUniqueInput | No |
| update | RuneStyleUpdateWithoutPlayerRunesInput | RuneStyleUncheckedUpdateWithoutPlayerRunesInput | No |
| create | RuneStyleCreateWithoutPlayerRunesInput | RuneStyleUncheckedCreateWithoutPlayerRunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RuneStyleWhereUniqueInput | No |
| data | RuneStyleUpdateWithoutPlayerRunesInput | RuneStyleUncheckedUpdateWithoutPlayerRunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RuneStyleScalarWhereInput | No |
| data | RuneStyleUpdateManyMutationInput | RuneStyleUncheckedUpdateManyWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] | No |
| OR | RuneStyleScalarWhereInput[] | No |
| NOT | RuneStyleScalarWhereInput | RuneStyleScalarWhereInput[] | No |
| id | StringFilter | String | No |
| playerRunesId | StringNullableFilter | String | Null | Yes |
| description | StringFilter | String | No |
| style | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutSkillLevelUpEventsInput | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutSkillLevelUpEventsInput | PlayerUncheckedUpdateWithoutSkillLevelUpEventsInput | No |
| create | PlayerCreateWithoutSkillLevelUpEventsInput | PlayerUncheckedCreateWithoutSkillLevelUpEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutSkillLevelUpEventsInput | PlayerUncheckedUpdateWithoutSkillLevelUpEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| event | EventCreateNestedManyWithoutPositionInput | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| event | EventUncheckedCreateNestedManyWithoutPositionInput | No |
| x | Int | Null | Yes |
| y | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| create | PositionCreateWithoutPlayerSnapshotInput | PositionUncheckedCreateWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| update | PositionUpdateWithoutPlayerSnapshotInput | PositionUncheckedUpdateWithoutPlayerSnapshotInput | No |
| create | PositionCreateWithoutPlayerSnapshotInput | PositionUncheckedCreateWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionWhereUniqueInput | No |
| data | PositionUpdateWithoutPlayerSnapshotInput | PositionUncheckedUpdateWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PositionScalarWhereInput | No |
| data | PositionUpdateManyMutationInput | PositionUncheckedUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutSnapshotsInput | PlayerUncheckedUpdateWithoutSnapshotsInput | No |
| create | PlayerCreateWithoutSnapshotsInput | PlayerUncheckedCreateWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutSnapshotsInput | PlayerUncheckedUpdateWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutWardEventsInput | PlayerUncheckedUpdateWithoutWardEventsInput | No |
| create | PlayerCreateWithoutWardEventsInput | PlayerUncheckedCreateWithoutWardEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutWardEventsInput | PlayerUncheckedUpdateWithoutWardEventsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| create | EventCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| player | PlayerCreateNestedManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | Null | Yes |
| currentGold | Int | Null | Yes |
| totalGold | Int | Null | Yes |
| totalGoldDiff | Int | Null | Yes |
| xp | Int | Null | Yes |
| xpDiff | Int | Null | Yes |
| level | Int | Null | Yes |
| cs | Int | Null | Yes |
| csDiff | Int | Null | Yes |
| monstersKilled | Int | Null | Yes |
| monstersKilledDiff | Int | Null | Yes |
| player | PlayerUncheckedCreateNestedManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| create | PlayerSnapshotCreateWithoutPositionInput | PlayerSnapshotUncheckedCreateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| update | EventUpdateWithoutPositionInput | EventUncheckedUpdateWithoutPositionInput | No |
| create | EventCreateWithoutPositionInput | EventUncheckedCreateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventWhereUniqueInput | No |
| data | EventUpdateWithoutPositionInput | EventUncheckedUpdateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EventScalarWhereInput | No |
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyWithoutEventInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventScalarWhereInput | EventScalarWhereInput[] | No |
| OR | EventScalarWhereInput[] | No |
| NOT | EventScalarWhereInput | EventScalarWhereInput[] | No |
| id | StringFilter | String | No |
| timestamp | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| update | PlayerSnapshotUpdateWithoutPositionInput | PlayerSnapshotUncheckedUpdateWithoutPositionInput | No |
| create | PlayerSnapshotCreateWithoutPositionInput | PlayerSnapshotUncheckedCreateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotWhereUniqueInput | No |
| data | PlayerSnapshotUpdateWithoutPositionInput | PlayerSnapshotUncheckedUpdateWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerSnapshotScalarWhereInput | No |
| data | PlayerSnapshotUpdateManyMutationInput | PlayerSnapshotUncheckedUpdateManyWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ActivityWhereUniqueInput | No |
| create | ActivityCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ActivityCreateManyProfileInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | No |
| create | ChampionWinrateCreateWithoutProfileInput | ChampionWinrateUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChampionWinrateCreateManyProfileInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | DuoWhereUniqueInput | No |
| create | DuoCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DuoCreateManyProfileInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | PlayerUpdateWithoutProfileInput | PlayerUncheckedUpdateWithoutProfileInput | No |
| create | PlayerCreateWithoutProfileInput | PlayerUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ActivityWhereUniqueInput | No |
| update | ActivityUpdateWithoutProfileInput | ActivityUncheckedUpdateWithoutProfileInput | No |
| create | ActivityCreateWithoutProfileInput | ActivityUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ActivityWhereUniqueInput | No |
| data | ActivityUpdateWithoutProfileInput | ActivityUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ActivityScalarWhereInput | No |
| data | ActivityUpdateManyMutationInput | ActivityUncheckedUpdateManyWithoutActivityInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ActivityScalarWhereInput | ActivityScalarWhereInput[] | No |
| OR | ActivityScalarWhereInput[] | No |
| NOT | ActivityScalarWhereInput | ActivityScalarWhereInput[] | No |
| id | StringFilter | String | No |
| profileId | StringNullableFilter | String | Null | Yes |
| month | IntNullableFilter | Int | Null | Yes |
| year | IntNullableFilter | Int | Null | Yes |
| day | IntNullableFilter | Int | Null | Yes |
| gamesPlayed | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | No |
| update | ChampionWinrateUpdateWithoutProfileInput | ChampionWinrateUncheckedUpdateWithoutProfileInput | No |
| create | ChampionWinrateCreateWithoutProfileInput | ChampionWinrateUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChampionWinrateWhereUniqueInput | No |
| data | ChampionWinrateUpdateWithoutProfileInput | ChampionWinrateUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChampionWinrateScalarWhereInput | No |
| data | ChampionWinrateUpdateManyMutationInput | ChampionWinrateUncheckedUpdateManyWithoutChampionWinrateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] | No |
| OR | ChampionWinrateScalarWhereInput[] | No |
| NOT | ChampionWinrateScalarWhereInput | ChampionWinrateScalarWhereInput[] | No |
| id | StringFilter | String | No |
| profileId | StringNullableFilter | String | Null | Yes |
| champion | StringFilter | String | No |
| wins | IntNullableFilter | Int | Null | Yes |
| games | IntNullableFilter | Int | Null | Yes |
| spell1Casts | IntNullableFilter | Int | Null | Yes |
| spell2Casts | IntNullableFilter | Int | Null | Yes |
| spell3Casts | IntNullableFilter | Int | Null | Yes |
| spell4Casts | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | DuoWhereUniqueInput | No |
| update | DuoUpdateWithoutProfileInput | DuoUncheckedUpdateWithoutProfileInput | No |
| create | DuoCreateWithoutProfileInput | DuoUncheckedCreateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DuoWhereUniqueInput | No |
| data | DuoUpdateWithoutProfileInput | DuoUncheckedUpdateWithoutProfileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DuoScalarWhereInput | No |
| data | DuoUpdateManyMutationInput | DuoUncheckedUpdateManyWithoutDuosInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DuoScalarWhereInput | DuoScalarWhereInput[] | No |
| OR | DuoScalarWhereInput[] | No |
| NOT | DuoScalarWhereInput | DuoScalarWhereInput[] | No |
| id | StringFilter | String | No |
| profileId | StringNullableFilter | String | Null | Yes |
| name | StringFilter | String | No |
| wins | IntNullableFilter | Int | Null | Yes |
| losses | IntNullableFilter | Int | Null | Yes |
| winrate | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeam | TeamCreateNestedOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamCreateNestedOneWithoutFrom_Game_redTeamInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| redTeamId | String | Null | Yes |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutSourceInput | GameUncheckedUpdateWithoutSourceInput | No |
| create | GameCreateWithoutSourceInput | GameUncheckedCreateWithoutSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutSourceInput | GameUncheckedUpdateWithoutSourceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GameScalarWhereInput | GameScalarWhereInput[] | No |
| OR | GameScalarWhereInput[] | No |
| NOT | GameScalarWhereInput | GameScalarWhereInput[] | No |
| id | StringFilter | String | No |
| matchId | StringFilter | String | No |
| gameId | StringFilter | String | No |
| gameCreation | StringFilter | String | No |
| gameStartTimestamp | StringFilter | String | No |
| gameEndTimestamp | StringFilter | String | No |
| duration | IntNullableFilter | Int | Null | Yes |
| start | StringFilter | String | No |
| gameVersion | StringFilter | String | No |
| blueTeamId | StringNullableFilter | String | Null | Yes |
| redTeamId | StringNullableFilter | String | Null | Yes |
| tournament | StringFilter | String | No |
| gameInSeries | IntNullableFilter | Int | Null | Yes |
| vod | StringFilter | String | No |
| platformId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PickBanWhereUniqueInput | No |
| create | PickBanCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PickBanCreateManyTeamInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeam | TeamCreateNestedOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamCreateNestedOneWithoutFrom_Game_redTeamInput | No |
| source | SourceCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| redTeamId | String | Null | Yes |
| source | SourceUncheckedCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObjectiveWhereUniqueInput | No |
| create | ObjectiveCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ObjectiveCreateManyTeamInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| redTeam | TeamCreateNestedOneWithoutFrom_Game_redTeamInput | No |
| source | SourceCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| redTeamId | String | Null | Yes |
| source | SourceUncheckedCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GameCreateManyBlueTeamInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeam | TeamCreateNestedOneWithoutFrom_Game_blueTeamInput | No |
| source | SourceCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| source | SourceUncheckedCreateNestedManyWithoutGameInput | No |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutGameInput | No |
| from_Team_game | TeamUncheckedCreateNestedManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| create | GameCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GameCreateManyRedTeamInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PickBanWhereUniqueInput | No |
| update | PickBanUpdateWithoutTeamInput | PickBanUncheckedUpdateWithoutTeamInput | No |
| create | PickBanCreateWithoutTeamInput | PickBanUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PickBanWhereUniqueInput | No |
| data | PickBanUpdateWithoutTeamInput | PickBanUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PickBanScalarWhereInput | No |
| data | PickBanUpdateManyMutationInput | PickBanUncheckedUpdateManyWithoutPickBanInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PickBanScalarWhereInput | PickBanScalarWhereInput[] | No |
| OR | PickBanScalarWhereInput[] | No |
| NOT | PickBanScalarWhereInput | PickBanScalarWhereInput[] | No |
| id | StringFilter | String | No |
| teamId | StringNullableFilter | String | Null | Yes |
| championId | IntNullableFilter | Int | Null | Yes |
| pickTurn | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | GameUpdateWithoutFrom_Team_gameInput | GameUncheckedUpdateWithoutFrom_Team_gameInput | No |
| create | GameCreateWithoutFrom_Team_gameInput | GameUncheckedCreateWithoutFrom_Team_gameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeam | TeamUpdateOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamUpdateOneWithoutFrom_Game_redTeamInput | No |
| source | SourceUpdateManyWithoutGameInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutTeamsInput | PlayerUncheckedUpdateWithoutTeamsInput | No |
| create | PlayerCreateWithoutTeamsInput | PlayerUncheckedCreateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutTeamsInput | PlayerUncheckedUpdateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutPlayersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObjectiveWhereUniqueInput | No |
| update | ObjectiveUpdateWithoutTeamInput | ObjectiveUncheckedUpdateWithoutTeamInput | No |
| create | ObjectiveCreateWithoutTeamInput | ObjectiveUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObjectiveWhereUniqueInput | No |
| data | ObjectiveUpdateWithoutTeamInput | ObjectiveUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ObjectiveScalarWhereInput | No |
| data | ObjectiveUpdateManyMutationInput | ObjectiveUncheckedUpdateManyWithoutObjectivesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] | No |
| OR | ObjectiveScalarWhereInput[] | No |
| NOT | ObjectiveScalarWhereInput | ObjectiveScalarWhereInput[] | No |
| id | StringFilter | String | No |
| teamId | StringNullableFilter | String | Null | Yes |
| first | BoolFilter | Boolean | No |
| kills | IntNullableFilter | Int | Null | Yes |
| type | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutBlueTeamInput | GameUncheckedUpdateWithoutBlueTeamInput | No |
| create | GameCreateWithoutBlueTeamInput | GameUncheckedCreateWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutBlueTeamInput | GameUncheckedUpdateWithoutBlueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutFrom_Game_blueTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| update | GameUpdateWithoutRedTeamInput | GameUncheckedUpdateWithoutRedTeamInput | No |
| create | GameCreateWithoutRedTeamInput | GameUncheckedCreateWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameWhereUniqueInput | No |
| data | GameUpdateWithoutRedTeamInput | GameUncheckedUpdateWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GameScalarWhereInput | No |
| data | GameUpdateManyMutationInput | GameUncheckedUpdateManyWithoutFrom_Game_redTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| monsterKills | TeamMonsterKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| monsterKills | TeamMonsterKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutBuildingKillsInput | PlayerUncheckedCreateWithoutBuildingKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutBuildingKillsInput | PlayerUncheckedUpdateWithoutBuildingKillsInput | No |
| create | PlayerCreateWithoutBuildingKillsInput | PlayerUncheckedCreateWithoutBuildingKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutBuildingKillsInput | PlayerUncheckedUpdateWithoutBuildingKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillCreateNestedManyWithoutVictimInput | No |
| teams | TeamCreateNestedManyWithoutPlayersInput | No |
| profile | ProfileCreateNestedOneWithoutPlayerInput | No |
| buildingKills | TeamBuildingKillCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | Null | Yes |
| profileIconId | Int | Null | Yes |
| revisionDate | String | No |
| kills | PlayerKillUncheckedCreateNestedManyWithoutKillerInput | No |
| deaths | PlayerKillUncheckedCreateNestedManyWithoutVictimInput | No |
| teams | TeamUncheckedCreateNestedManyWithoutPlayersInput | No |
| profileId | String | Null | Yes |
| buildingKills | TeamBuildingKillUncheckedCreateNestedManyWithoutKillerInput | No |
| itemEvent | PlayerItemEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| endOfGameStats | PlayerEndOfGameStatUncheckedCreateNestedManyWithoutPlayerInput | No |
| snapshots | PlayerSnapshotUncheckedCreateNestedManyWithoutPlayerInput | No |
| wardEvents | PlayerWardEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| skillLevelUpEvents | PlayerSkillLevelUpEventUncheckedCreateNestedManyWithoutPlayerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| create | PlayerCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| update | PlayerUpdateWithoutMonsterKillsInput | PlayerUncheckedUpdateWithoutMonsterKillsInput | No |
| create | PlayerCreateWithoutMonsterKillsInput | PlayerUncheckedCreateWithoutMonsterKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerWhereUniqueInput | No |
| data | PlayerUpdateWithoutMonsterKillsInput | PlayerUncheckedUpdateWithoutMonsterKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerScalarWhereInput | No |
| data | PlayerUpdateManyMutationInput | PlayerUncheckedUpdateManyWithoutKillerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunes | PlayerRuneCreateNestedOneWithoutRuneStyleInput | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunesId | String | Null | Yes |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RuneStyleWhereUniqueInput | No |
| create | RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RuneStyleUpdateWithoutSelectionInput | RuneStyleUncheckedUpdateWithoutSelectionInput | No |
| create | RuneStyleCreateWithoutSelectionInput | RuneStyleUncheckedCreateWithoutSelectionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerRunes | PlayerRuneUpdateOneWithoutRuneStyleInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerRunesId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatCreateNestedOneWithoutPerksInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedCreateNestedOneWithoutPerksInput | No |
| defense | Int | Null | Yes |
| flex | Int | Null | Yes |
| offense | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PlayerRuneWhereUniqueInput | No |
| create | PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | No |
| create | RuneSelectionCreateWithoutRuneStyleInput | RuneSelectionUncheckedCreateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RuneSelectionCreateManyRuneStyleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | PlayerRuneUpdateWithoutRuneStyleInput | PlayerRuneUncheckedUpdateWithoutRuneStyleInput | No |
| create | PlayerRuneCreateWithoutRuneStyleInput | PlayerRuneUncheckedCreateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUpdateOneWithoutPerksInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| playerEndOfGameStat | PlayerEndOfGameStatUncheckedUpdateOneWithoutPerksInput | No |
| defense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| flex | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| offense | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | No |
| update | RuneSelectionUpdateWithoutRuneStyleInput | RuneSelectionUncheckedUpdateWithoutRuneStyleInput | No |
| create | RuneSelectionCreateWithoutRuneStyleInput | RuneSelectionUncheckedCreateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RuneSelectionWhereUniqueInput | No |
| data | RuneSelectionUpdateWithoutRuneStyleInput | RuneSelectionUncheckedUpdateWithoutRuneStyleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RuneSelectionScalarWhereInput | No |
| data | RuneSelectionUpdateManyMutationInput | RuneSelectionUncheckedUpdateManyWithoutSelectionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] | No |
| OR | RuneSelectionScalarWhereInput[] | No |
| NOT | RuneSelectionScalarWhereInput | RuneSelectionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| runeStyleId | StringNullableFilter | String | Null | Yes |
| perk | IntNullableFilter | Int | Null | Yes |
| var1 | IntNullableFilter | Int | Null | Yes |
| var2 | IntNullableFilter | Int | Null | Yes |
| var3 | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| playerSnapshot | PlayerSnapshotUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| playerSnapshot | PlayerSnapshotUncheckedUpdateManyWithoutPositionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | Int | Null | Yes |
| teamMatchId | String | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| api | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| players | PlayerUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| players | PlayerUncheckedUpdateManyWithoutTeamsInput | No |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| itemsId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| victim | PlayerUpdateManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| victim | PlayerUncheckedUpdateManyWithoutDeathsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUpdateManyWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| killer | PlayerUncheckedUpdateManyWithoutKillsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUpdateManyWithoutTeamInput | No |
| game | GameUpdateOneWithoutFrom_Team_gameInput | No |
| objectives | ObjectiveUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| pickBan | PickBanUncheckedUpdateManyWithoutTeamInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| objectives | ObjectiveUncheckedUpdateManyWithoutTeamInput | No |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| from_Game_blueTeam | GameUncheckedUpdateManyWithoutBlueTeamInput | No |
| from_Game_redTeam | GameUncheckedUpdateManyWithoutRedTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| gameId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| teamId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| teamMatchId | String | StringFieldUpdateOperationsInput | No |
| win | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| subType | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| lane | String | StringFieldUpdateOperationsInput | No |
| side | String | StringFieldUpdateOperationsInput | No |
| towerLocation | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| itemId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| name | String | StringFieldUpdateOperationsInput | No |
| undoId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUpdateManyWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| position | PositionUncheckedUpdateManyWithoutPlayerSnapshotInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| wardType | PlayerWardEventWardTypeType | NullableEnumPlayerWardEventWardTypeTypeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| slot | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | Null | Yes |
| gameId | String | Null | Yes |
| perksId | String | Null | Yes |
| assists | Int | Null | Yes |
| baronKills | Int | Null | Yes |
| bountyLevel | Int | Null | Yes |
| championExperience | Int | Null | Yes |
| championLevel | Int | Null | Yes |
| championId | Int | Null | Yes |
| championName | String | No |
| championTransform | Int | Null | Yes |
| consumablesPurchased | Int | Null | Yes |
| damageDealtToBuildings | Int | Null | Yes |
| damageDealtToObjectives | Int | Null | Yes |
| damageDealtToTurrets | Int | Null | Yes |
| damageSelfMitigated | Int | Null | Yes |
| deaths | Int | Null | Yes |
| detectorWardsPlaced | Int | Null | Yes |
| doubleKills | Int | Null | Yes |
| dragonKills | Int | Null | Yes |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | Null | Yes |
| goldSpent | Int | Null | Yes |
| individualPosition | String | No |
| inhibitorKills | Int | Null | Yes |
| inhibitorTakedowns | Int | Null | Yes |
| inhibitorsLost | Int | Null | Yes |
| item0 | Int | Null | Yes |
| item1 | Int | Null | Yes |
| item2 | Int | Null | Yes |
| item3 | Int | Null | Yes |
| item4 | Int | Null | Yes |
| item5 | Int | Null | Yes |
| item6 | Int | Null | Yes |
| itemsPurchased | Int | Null | Yes |
| killingSprees | Int | Null | Yes |
| kills | Int | Null | Yes |
| lane | String | No |
| largestCriticalStrike | Int | Null | Yes |
| largestKillingSpree | Int | Null | Yes |
| largestMultiKill | Int | Null | Yes |
| longestTimeSpentLiving | Int | Null | Yes |
| magicDamageDealt | Int | Null | Yes |
| magicDamageDealtToChampions | Int | Null | Yes |
| magicDamageTaken | Int | Null | Yes |
| neutralMinionsKilled | Int | Null | Yes |
| nexusKills | Int | Null | Yes |
| nexusLost | Int | Null | Yes |
| nexusTakedowns | Int | Null | Yes |
| objectivesStolen | Int | Null | Yes |
| objectivesStolenAssists | Int | Null | Yes |
| participantId | Int | Null | Yes |
| pentaKills | Int | Null | Yes |
| physicalDamageDealt | Int | Null | Yes |
| physicalDamageDealtToChampions | Int | Null | Yes |
| physicalDamageTaken | Int | Null | Yes |
| quadraKills | Int | Null | Yes |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| summoner1Casts | Int | Null | Yes |
| summoner1Id | Int | Null | Yes |
| summoner2Casts | Int | Null | Yes |
| summoner2Id | Int | Null | Yes |
| summonerLevel | Int | Null | Yes |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | Null | Yes |
| teamPosition | String | No |
| timeCCingOthers | Int | Null | Yes |
| timePlayed | Int | Null | Yes |
| totalDamageDealt | Int | Null | Yes |
| totalDamageDealtToChampions | Int | Null | Yes |
| totalDamageShieldedOnTeammates | Int | Null | Yes |
| totalDamageTaken | Int | Null | Yes |
| totalHeal | Int | Null | Yes |
| totalHealsOnTeammates | Int | Null | Yes |
| totalMinionsKilled | Int | Null | Yes |
| totalTimeCCDealt | Int | Null | Yes |
| totalTimeSpentDead | Int | Null | Yes |
| totalUnitsHealed | Int | Null | Yes |
| tripleKills | Int | Null | Yes |
| trueDamageDealt | Int | Null | Yes |
| trueDamageDealtToChampions | Int | Null | Yes |
| trueDamageTaken | Int | Null | Yes |
| turretsKilled | Int | Null | Yes |
| turretTakedowns | Int | Null | Yes |
| turretsLost | Int | Null | Yes |
| unrealKills | Int | Null | Yes |
| visionScore | Int | Null | Yes |
| visionWardsBoughtInGame | Int | Null | Yes |
| wardsKilled | Int | Null | Yes |
| wardsPlaced | Int | Null | Yes |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| description | String | No |
| style | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| selection | RuneSelectionUpdateManyWithoutRuneStyleInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| selection | RuneSelectionUncheckedUpdateManyWithoutRuneStyleInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| style | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| event | EventUpdateManyWithoutPositionInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| event | EventUncheckedUpdateManyWithoutPositionInput | No |
| x | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| y | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| player | PlayerUpdateManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| player | PlayerUncheckedUpdateManyWithoutSnapshotsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| timestamp | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| currentGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGold | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| totalGoldDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xp | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| xpDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| cs | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| csDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilled | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| monstersKilledDiff | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| month | Int | Null | Yes |
| year | Int | Null | Yes |
| day | Int | Null | Yes |
| gamesPlayed | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| champion | String | No |
| wins | Int | Null | Yes |
| games | Int | Null | Yes |
| spell1Casts | Int | Null | Yes |
| spell2Casts | Int | Null | Yes |
| spell3Casts | Int | Null | Yes |
| spell4Casts | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| wins | Int | Null | Yes |
| losses | Int | Null | Yes |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| month | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| year | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| day | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gamesPlayed | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| champion | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| games | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell1Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell2Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell3Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| spell4Casts | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| wins | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| losses | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| winrate | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeam | TeamUpdateOneWithoutFrom_Game_blueTeamInput | No |
| redTeam | TeamUpdateOneWithoutFrom_Game_redTeamInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUpdateManyWithoutGameInput | No |
| from_Team_game | TeamUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| redTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| championId | Int | Null | Yes |
| pickTurn | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| first | Boolean | No |
| kills | Int | Null | Yes |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| redTeamId | String | Null | Yes |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | Null | Yes |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | Null | Yes |
| tournament | String | No |
| gameInSeries | Int | Null | Yes |
| vod | String | No |
| platformId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| championId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| pickTurn | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| puuid | String | StringFieldUpdateOperationsInput | No |
| accountId | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| summonerId | String | StringFieldUpdateOperationsInput | No |
| summonerName | String | StringFieldUpdateOperationsInput | No |
| summonerLevel | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| profileIconId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| revisionDate | String | StringFieldUpdateOperationsInput | No |
| profileId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| first | Boolean | BoolFieldUpdateOperationsInput | No |
| kills | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| redTeam | TeamUpdateOneWithoutFrom_Game_redTeamInput | No |
| source | SourceUpdateManyWithoutGameInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUpdateManyWithoutGameInput | No |
| from_Team_game | TeamUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| redTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeam | TeamUpdateOneWithoutFrom_Game_blueTeamInput | No |
| source | SourceUpdateManyWithoutGameInput | No |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStatUpdateManyWithoutGameInput | No |
| from_Team_game | TeamUpdateManyWithoutGameInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| matchId | String | StringFieldUpdateOperationsInput | No |
| gameId | String | StringFieldUpdateOperationsInput | No |
| gameCreation | String | StringFieldUpdateOperationsInput | No |
| gameStartTimestamp | String | StringFieldUpdateOperationsInput | No |
| gameEndTimestamp | String | StringFieldUpdateOperationsInput | No |
| duration | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| start | String | StringFieldUpdateOperationsInput | No |
| gameVersion | String | StringFieldUpdateOperationsInput | No |
| blueTeamId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| tournament | String | StringFieldUpdateOperationsInput | No |
| gameInSeries | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| vod | String | StringFieldUpdateOperationsInput | No |
| platformId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| perk | Int | Null | Yes |
| var1 | Int | Null | Yes |
| var2 | Int | Null | Yes |
| var3 | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| perk | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var1 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var2 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| var3 | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profile | Profile | No |
| profileId | String | No |
| month | Int | No |
| year | Int | No |
| day | Int | No |
| gamesPlayed | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profile | Profile | No |
| profileId | String | No |
| champion | String | Yes |
| wins | Int | No |
| games | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profile | Profile | No |
| profileId | String | No |
| name | String | Yes |
| wins | Int | No |
| losses | Int | No |
| winrate | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| startTime | String | Yes |
| currentSeason | String | Yes |
| seeding | Boolean | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| timestamp | Int | No |
| position | Position[] | No |
| _count | EventCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| matchId | String | Yes |
| gameId | String | Yes |
| gameCreation | String | Yes |
| gameStartTimestamp | String | Yes |
| gameEndTimestamp | String | Yes |
| duration | Int | No |
| start | String | Yes |
| gameVersion | String | Yes |
| blueTeam | Team | No |
| blueTeamId | String | No |
| redTeam | Team | No |
| redTeamId | String | No |
| source | Source[] | No |
| tournament | String | Yes |
| gameInSeries | Int | No |
| vod | String | Yes |
| platformId | String | Yes |
| from_PlayerEndOfGameStat_game | PlayerEndOfGameStat[] | No |
| from_Team_game | Team[] | No |
| _count | GameCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| team | Team | No |
| teamId | String | No |
| first | Boolean | Yes |
| kills | Int | No |
| type | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| team | Team | No |
| teamId | String | No |
| championId | Int | No |
| pickTurn | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| puuid | String | Yes |
| accountId | String | Yes |
| platformId | String | Yes |
| summonerId | String | Yes |
| summonerName | String | Yes |
| summonerLevel | Int | No |
| profileIconId | Int | No |
| revisionDate | String | Yes |
| kills | PlayerKill[] | No |
| deaths | PlayerKill[] | No |
| teams | Team[] | No |
| profile | Profile | No |
| profileId | String | No |
| monsterKills | TeamMonsterKill[] | No |
| buildingKills | TeamBuildingKill[] | No |
| itemEvent | PlayerItemEvent[] | No |
| endOfGameStats | PlayerEndOfGameStat[] | No |
| snapshots | PlayerSnapshot[] | No |
| wardEvents | PlayerWardEvent[] | No |
| skillLevelUpEvents | PlayerSkillLevelUpEvent[] | No |
| _count | PlayerCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| player | Player | No |
| playerId | String | No |
| game | Game | No |
| gameId | String | No |
| perks | PlayerRune | No |
| perksId | String | No |
| items | PlayerItem | No |
| itemsId | String | No |
| assists | Int | No |
| baronKills | Int | No |
| bountyLevel | Int | No |
| championExperience | Int | No |
| championLevel | Int | No |
| championId | Int | No |
| championName | String | Yes |
| championTransform | Int | No |
| consumablesPurchased | Int | No |
| damageDealtToBuildings | Int | No |
| damageDealtToObjectives | Int | No |
| damageDealtToTurrets | Int | No |
| damageSelfMitigated | Int | No |
| deaths | Int | No |
| detectorWardsPlaced | Int | No |
| doubleKills | Int | No |
| dragonKills | Int | No |
| firstBlood | Boolean | Yes |
| firstBloodAssist | Boolean | Yes |
| firstTowerKill | Boolean | Yes |
| firstTowerAssist | Boolean | Yes |
| gameEndedInEarlySurrender | Boolean | Yes |
| gameEndedInSurrender | Boolean | Yes |
| goldEarned | Int | No |
| goldSpent | Int | No |
| individualPosition | String | Yes |
| inhibitorKills | Int | No |
| inhibitorTakedowns | Int | No |
| inhibitorsLost | Int | No |
| item0 | Int | No |
| item1 | Int | No |
| item2 | Int | No |
| item3 | Int | No |
| item4 | Int | No |
| item5 | Int | No |
| item6 | Int | No |
| itemsPurchased | Int | No |
| killingSprees | Int | No |
| kills | Int | No |
| lane | String | Yes |
| largestCriticalStrike | Int | No |
| largestKillingSpree | Int | No |
| largestMultiKill | Int | No |
| longestTimeSpentLiving | Int | No |
| magicDamageDealt | Int | No |
| magicDamageDealtToChampions | Int | No |
| magicDamageTaken | Int | No |
| neutralMinionsKilled | Int | No |
| nexusKills | Int | No |
| nexusLost | Int | No |
| nexusTakedowns | Int | No |
| objectivesStolen | Int | No |
| objectivesStolenAssists | Int | No |
| participantId | Int | No |
| pentaKills | Int | No |
| physicalDamageDealt | Int | No |
| physicalDamageDealtToChampions | Int | No |
| physicalDamageTaken | Int | No |
| quadraKills | Int | No |
| riotIdName | String | Yes |
| riotIdTagline | String | Yes |
| role | String | Yes |
| sightWardsBoughtInGame | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| summoner1Casts | Int | No |
| summoner1Id | Int | No |
| summoner2Casts | Int | No |
| summoner2Id | Int | No |
| summonerLevel | Int | No |
| summonerName | String | Yes |
| teamEarlySurrendered | Boolean | Yes |
| teamId | Int | No |
| teamPosition | String | Yes |
| timeCCingOthers | Int | No |
| timePlayed | Int | No |
| totalDamageDealt | Int | No |
| totalDamageDealtToChampions | Int | No |
| totalDamageShieldedOnTeammates | Int | No |
| totalDamageTaken | Int | No |
| totalHeal | Int | No |
| totalHealsOnTeammates | Int | No |
| totalMinionsKilled | Int | No |
| totalTimeCCDealt | Int | No |
| totalTimeSpentDead | Int | No |
| totalUnitsHealed | Int | No |
| tripleKills | Int | No |
| trueDamageDealt | Int | No |
| trueDamageDealtToChampions | Int | No |
| trueDamageTaken | Int | No |
| turretsKilled | Int | No |
| turretTakedowns | Int | No |
| turretsLost | Int | No |
| unrealKills | Int | No |
| visionScore | Int | No |
| visionWardsBoughtInGame | Int | No |
| wardsKilled | Int | No |
| wardsPlaced | Int | No |
| win | Boolean | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| slot | Int | No |
| itemId | Int | No |
| name | String | Yes |
| playerEndOfGameStat | PlayerEndOfGameStat[] | No |
| _count | PlayerItemCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| player | Player[] | No |
| type | String | Yes |
| itemId | Int | No |
| name | String | Yes |
| undoId | Int | No |
| _count | PlayerItemEventCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| killer | Player[] | No |
| victim | Player[] | No |
| _count | PlayerKillCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| playerEndOfGameStat | PlayerEndOfGameStat | No |
| runeStyle | RuneStyle[] | No |
| defense | Int | No |
| flex | Int | No |
| offense | Int | No |
| _count | PlayerRuneCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| player | Player[] | No |
| type | String | Yes |
| slot | Int | No |
| _count | PlayerSkillLevelUpEventCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| timestamp | Float | No |
| currentGold | Int | No |
| totalGold | Int | No |
| totalGoldDiff | Int | No |
| xp | Int | No |
| xpDiff | Int | No |
| level | Int | No |
| cs | Int | No |
| csDiff | Int | No |
| monstersKilled | Int | No |
| monstersKilledDiff | Int | No |
| position | Position[] | No |
| player | Player[] | No |
| _count | PlayerSnapshotCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| player | Player[] | No |
| type | String | Yes |
| wardType | PlayerWardEventWardTypeType | No |
| _count | PlayerWardEventCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| event | Event[] | No |
| x | Int | No |
| y | Int | No |
| playerSnapshot | PlayerSnapshot[] | No |
| _count | PositionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| update | Boolean | Yes |
| player | Player | No |
| lastUpdate | DateTime | Yes |
| kills | Int | No |
| deaths | Int | No |
| assists | Int | No |
| kda | String | Yes |
| winRate | String | Yes |
| csPerMinute | String | Yes |
| damagePerMinute | String | Yes |
| killsPerMinute | String | Yes |
| goldPerMinute | String | Yes |
| averageGameTime | String | Yes |
| averageTimeSpentDead | String | Yes |
| totalGameTime | String | Yes |
| activity | Activity[] | No |
| championWinrate | ChampionWinrate[] | No |
| duos | Duo[] | No |
| _count | ProfileCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| identifier | String | Yes |
| type | String | Yes |
| timestamp | DateTime | Yes |
| priority | Boolean | Yes |
| retrieved | Boolean | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| game | Game[] | No |
| api | String | Yes |
| _count | SourceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| pickBan | PickBan[] | No |
| game | Game | No |
| gameId | String | No |
| players | Player[] | No |
| objectives | Objective[] | No |
| teamId | Int | No |
| teamMatchId | String | Yes |
| win | Boolean | Yes |
| from_Game_blueTeam | Game[] | No |
| from_Game_redTeam | Game[] | No |
| _count | TeamCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| killer | Player[] | No |
| type | String | Yes |
| lane | String | Yes |
| side | String | Yes |
| towerLocation | String | Yes |
| _count | TeamBuildingKillCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| killer | Player[] | No |
| type | String | Yes |
| subType | String | Yes |
| _count | TeamMonsterKillCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| runeStyle | RuneStyle | No |
| runeStyleId | String | No |
| perk | Int | No |
| var1 | Int | No |
| var2 | Int | No |
| var3 | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| playerRunes | PlayerRune | No |
| playerRunesId | String | No |
| selection | RuneSelection[] | No |
| description | String | Yes |
| style | Int | No |
| _count | RuneStyleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | ActivityCountAggregateOutputType | No |
| _avg | ActivityAvgAggregateOutputType | No |
| _sum | ActivitySumAggregateOutputType | No |
| _min | ActivityMinAggregateOutputType | No |
| _max | ActivityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profileId | String | No |
| month | Int | No |
| year | Int | No |
| day | Int | No |
| gamesPlayed | Int | No |
| _count | ActivityCountAggregateOutputType | No |
| _avg | ActivityAvgAggregateOutputType | No |
| _sum | ActivitySumAggregateOutputType | No |
| _min | ActivityMinAggregateOutputType | No |
| _max | ActivityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChampionWinrateCountAggregateOutputType | No |
| _avg | ChampionWinrateAvgAggregateOutputType | No |
| _sum | ChampionWinrateSumAggregateOutputType | No |
| _min | ChampionWinrateMinAggregateOutputType | No |
| _max | ChampionWinrateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profileId | String | No |
| champion | String | Yes |
| wins | Int | No |
| games | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| _count | ChampionWinrateCountAggregateOutputType | No |
| _avg | ChampionWinrateAvgAggregateOutputType | No |
| _sum | ChampionWinrateSumAggregateOutputType | No |
| _min | ChampionWinrateMinAggregateOutputType | No |
| _max | ChampionWinrateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DuoCountAggregateOutputType | No |
| _avg | DuoAvgAggregateOutputType | No |
| _sum | DuoSumAggregateOutputType | No |
| _min | DuoMinAggregateOutputType | No |
| _max | DuoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| profileId | String | No |
| name | String | Yes |
| wins | Int | No |
| losses | Int | No |
| winrate | String | Yes |
| _count | DuoCountAggregateOutputType | No |
| _avg | DuoAvgAggregateOutputType | No |
| _sum | DuoSumAggregateOutputType | No |
| _min | DuoMinAggregateOutputType | No |
| _max | DuoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConstantCountAggregateOutputType | No |
| _min | ConstantMinAggregateOutputType | No |
| _max | ConstantMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| startTime | String | Yes |
| currentSeason | String | Yes |
| seeding | Boolean | Yes |
| _count | ConstantCountAggregateOutputType | No |
| _min | ConstantMinAggregateOutputType | No |
| _max | ConstantMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| timestamp | Int | No |
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GameCountAggregateOutputType | No |
| _avg | GameAvgAggregateOutputType | No |
| _sum | GameSumAggregateOutputType | No |
| _min | GameMinAggregateOutputType | No |
| _max | GameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| matchId | String | Yes |
| gameId | String | Yes |
| gameCreation | String | Yes |
| gameStartTimestamp | String | Yes |
| gameEndTimestamp | String | Yes |
| duration | Int | No |
| start | String | Yes |
| gameVersion | String | Yes |
| blueTeamId | String | No |
| redTeamId | String | No |
| tournament | String | Yes |
| gameInSeries | Int | No |
| vod | String | Yes |
| platformId | String | Yes |
| _count | GameCountAggregateOutputType | No |
| _avg | GameAvgAggregateOutputType | No |
| _sum | GameSumAggregateOutputType | No |
| _min | GameMinAggregateOutputType | No |
| _max | GameMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ObjectiveCountAggregateOutputType | No |
| _avg | ObjectiveAvgAggregateOutputType | No |
| _sum | ObjectiveSumAggregateOutputType | No |
| _min | ObjectiveMinAggregateOutputType | No |
| _max | ObjectiveMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| teamId | String | No |
| first | Boolean | Yes |
| kills | Int | No |
| type | String | Yes |
| _count | ObjectiveCountAggregateOutputType | No |
| _avg | ObjectiveAvgAggregateOutputType | No |
| _sum | ObjectiveSumAggregateOutputType | No |
| _min | ObjectiveMinAggregateOutputType | No |
| _max | ObjectiveMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PickBanCountAggregateOutputType | No |
| _avg | PickBanAvgAggregateOutputType | No |
| _sum | PickBanSumAggregateOutputType | No |
| _min | PickBanMinAggregateOutputType | No |
| _max | PickBanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| teamId | String | No |
| championId | Int | No |
| pickTurn | Int | No |
| _count | PickBanCountAggregateOutputType | No |
| _avg | PickBanAvgAggregateOutputType | No |
| _sum | PickBanSumAggregateOutputType | No |
| _min | PickBanMinAggregateOutputType | No |
| _max | PickBanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerCountAggregateOutputType | No |
| _avg | PlayerAvgAggregateOutputType | No |
| _sum | PlayerSumAggregateOutputType | No |
| _min | PlayerMinAggregateOutputType | No |
| _max | PlayerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| puuid | String | Yes |
| accountId | String | Yes |
| platformId | String | Yes |
| summonerId | String | Yes |
| summonerName | String | Yes |
| summonerLevel | Int | No |
| profileIconId | Int | No |
| revisionDate | String | Yes |
| profileId | String | No |
| _count | PlayerCountAggregateOutputType | No |
| _avg | PlayerAvgAggregateOutputType | No |
| _sum | PlayerSumAggregateOutputType | No |
| _min | PlayerMinAggregateOutputType | No |
| _max | PlayerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerEndOfGameStatCountAggregateOutputType | No |
| _avg | PlayerEndOfGameStatAvgAggregateOutputType | No |
| _sum | PlayerEndOfGameStatSumAggregateOutputType | No |
| _min | PlayerEndOfGameStatMinAggregateOutputType | No |
| _max | PlayerEndOfGameStatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| playerId | String | No |
| gameId | String | No |
| perksId | String | No |
| itemsId | String | No |
| assists | Int | No |
| baronKills | Int | No |
| bountyLevel | Int | No |
| championExperience | Int | No |
| championLevel | Int | No |
| championId | Int | No |
| championName | String | Yes |
| championTransform | Int | No |
| consumablesPurchased | Int | No |
| damageDealtToBuildings | Int | No |
| damageDealtToObjectives | Int | No |
| damageDealtToTurrets | Int | No |
| damageSelfMitigated | Int | No |
| deaths | Int | No |
| detectorWardsPlaced | Int | No |
| doubleKills | Int | No |
| dragonKills | Int | No |
| firstBlood | Boolean | Yes |
| firstBloodAssist | Boolean | Yes |
| firstTowerKill | Boolean | Yes |
| firstTowerAssist | Boolean | Yes |
| gameEndedInEarlySurrender | Boolean | Yes |
| gameEndedInSurrender | Boolean | Yes |
| goldEarned | Int | No |
| goldSpent | Int | No |
| individualPosition | String | Yes |
| inhibitorKills | Int | No |
| inhibitorTakedowns | Int | No |
| inhibitorsLost | Int | No |
| item0 | Int | No |
| item1 | Int | No |
| item2 | Int | No |
| item3 | Int | No |
| item4 | Int | No |
| item5 | Int | No |
| item6 | Int | No |
| itemsPurchased | Int | No |
| killingSprees | Int | No |
| kills | Int | No |
| lane | String | Yes |
| largestCriticalStrike | Int | No |
| largestKillingSpree | Int | No |
| largestMultiKill | Int | No |
| longestTimeSpentLiving | Int | No |
| magicDamageDealt | Int | No |
| magicDamageDealtToChampions | Int | No |
| magicDamageTaken | Int | No |
| neutralMinionsKilled | Int | No |
| nexusKills | Int | No |
| nexusLost | Int | No |
| nexusTakedowns | Int | No |
| objectivesStolen | Int | No |
| objectivesStolenAssists | Int | No |
| participantId | Int | No |
| pentaKills | Int | No |
| physicalDamageDealt | Int | No |
| physicalDamageDealtToChampions | Int | No |
| physicalDamageTaken | Int | No |
| quadraKills | Int | No |
| riotIdName | String | Yes |
| riotIdTagline | String | Yes |
| role | String | Yes |
| sightWardsBoughtInGame | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| summoner1Casts | Int | No |
| summoner1Id | Int | No |
| summoner2Casts | Int | No |
| summoner2Id | Int | No |
| summonerLevel | Int | No |
| summonerName | String | Yes |
| teamEarlySurrendered | Boolean | Yes |
| teamId | Int | No |
| teamPosition | String | Yes |
| timeCCingOthers | Int | No |
| timePlayed | Int | No |
| totalDamageDealt | Int | No |
| totalDamageDealtToChampions | Int | No |
| totalDamageShieldedOnTeammates | Int | No |
| totalDamageTaken | Int | No |
| totalHeal | Int | No |
| totalHealsOnTeammates | Int | No |
| totalMinionsKilled | Int | No |
| totalTimeCCDealt | Int | No |
| totalTimeSpentDead | Int | No |
| totalUnitsHealed | Int | No |
| tripleKills | Int | No |
| trueDamageDealt | Int | No |
| trueDamageDealtToChampions | Int | No |
| trueDamageTaken | Int | No |
| turretsKilled | Int | No |
| turretTakedowns | Int | No |
| turretsLost | Int | No |
| unrealKills | Int | No |
| visionScore | Int | No |
| visionWardsBoughtInGame | Int | No |
| wardsKilled | Int | No |
| wardsPlaced | Int | No |
| win | Boolean | Yes |
| _count | PlayerEndOfGameStatCountAggregateOutputType | No |
| _avg | PlayerEndOfGameStatAvgAggregateOutputType | No |
| _sum | PlayerEndOfGameStatSumAggregateOutputType | No |
| _min | PlayerEndOfGameStatMinAggregateOutputType | No |
| _max | PlayerEndOfGameStatMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerItemCountAggregateOutputType | No |
| _avg | PlayerItemAvgAggregateOutputType | No |
| _sum | PlayerItemSumAggregateOutputType | No |
| _min | PlayerItemMinAggregateOutputType | No |
| _max | PlayerItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| slot | Int | No |
| itemId | Int | No |
| name | String | Yes |
| _count | PlayerItemCountAggregateOutputType | No |
| _avg | PlayerItemAvgAggregateOutputType | No |
| _sum | PlayerItemSumAggregateOutputType | No |
| _min | PlayerItemMinAggregateOutputType | No |
| _max | PlayerItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerItemEventCountAggregateOutputType | No |
| _avg | PlayerItemEventAvgAggregateOutputType | No |
| _sum | PlayerItemEventSumAggregateOutputType | No |
| _min | PlayerItemEventMinAggregateOutputType | No |
| _max | PlayerItemEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| itemId | Int | No |
| name | String | Yes |
| undoId | Int | No |
| _count | PlayerItemEventCountAggregateOutputType | No |
| _avg | PlayerItemEventAvgAggregateOutputType | No |
| _sum | PlayerItemEventSumAggregateOutputType | No |
| _min | PlayerItemEventMinAggregateOutputType | No |
| _max | PlayerItemEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerKillCountAggregateOutputType | No |
| _min | PlayerKillMinAggregateOutputType | No |
| _max | PlayerKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| _count | PlayerKillCountAggregateOutputType | No |
| _min | PlayerKillMinAggregateOutputType | No |
| _max | PlayerKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerRuneCountAggregateOutputType | No |
| _avg | PlayerRuneAvgAggregateOutputType | No |
| _sum | PlayerRuneSumAggregateOutputType | No |
| _min | PlayerRuneMinAggregateOutputType | No |
| _max | PlayerRuneMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| defense | Int | No |
| flex | Int | No |
| offense | Int | No |
| _count | PlayerRuneCountAggregateOutputType | No |
| _avg | PlayerRuneAvgAggregateOutputType | No |
| _sum | PlayerRuneSumAggregateOutputType | No |
| _min | PlayerRuneMinAggregateOutputType | No |
| _max | PlayerRuneMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerSkillLevelUpEventCountAggregateOutputType | No |
| _avg | PlayerSkillLevelUpEventAvgAggregateOutputType | No |
| _sum | PlayerSkillLevelUpEventSumAggregateOutputType | No |
| _min | PlayerSkillLevelUpEventMinAggregateOutputType | No |
| _max | PlayerSkillLevelUpEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| slot | Int | No |
| _count | PlayerSkillLevelUpEventCountAggregateOutputType | No |
| _avg | PlayerSkillLevelUpEventAvgAggregateOutputType | No |
| _sum | PlayerSkillLevelUpEventSumAggregateOutputType | No |
| _min | PlayerSkillLevelUpEventMinAggregateOutputType | No |
| _max | PlayerSkillLevelUpEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerSnapshotCountAggregateOutputType | No |
| _avg | PlayerSnapshotAvgAggregateOutputType | No |
| _sum | PlayerSnapshotSumAggregateOutputType | No |
| _min | PlayerSnapshotMinAggregateOutputType | No |
| _max | PlayerSnapshotMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| timestamp | Float | No |
| currentGold | Int | No |
| totalGold | Int | No |
| totalGoldDiff | Int | No |
| xp | Int | No |
| xpDiff | Int | No |
| level | Int | No |
| cs | Int | No |
| csDiff | Int | No |
| monstersKilled | Int | No |
| monstersKilledDiff | Int | No |
| _count | PlayerSnapshotCountAggregateOutputType | No |
| _avg | PlayerSnapshotAvgAggregateOutputType | No |
| _sum | PlayerSnapshotSumAggregateOutputType | No |
| _min | PlayerSnapshotMinAggregateOutputType | No |
| _max | PlayerSnapshotMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PlayerWardEventCountAggregateOutputType | No |
| _min | PlayerWardEventMinAggregateOutputType | No |
| _max | PlayerWardEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| wardType | PlayerWardEventWardTypeType | No |
| _count | PlayerWardEventCountAggregateOutputType | No |
| _min | PlayerWardEventMinAggregateOutputType | No |
| _max | PlayerWardEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PositionCountAggregateOutputType | No |
| _avg | PositionAvgAggregateOutputType | No |
| _sum | PositionSumAggregateOutputType | No |
| _min | PositionMinAggregateOutputType | No |
| _max | PositionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| x | Int | No |
| y | Int | No |
| _count | PositionCountAggregateOutputType | No |
| _avg | PositionAvgAggregateOutputType | No |
| _sum | PositionSumAggregateOutputType | No |
| _min | PositionMinAggregateOutputType | No |
| _max | PositionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ProfileCountAggregateOutputType | No |
| _avg | ProfileAvgAggregateOutputType | No |
| _sum | ProfileSumAggregateOutputType | No |
| _min | ProfileMinAggregateOutputType | No |
| _max | ProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| update | Boolean | Yes |
| lastUpdate | DateTime | Yes |
| kills | Int | No |
| deaths | Int | No |
| assists | Int | No |
| kda | String | Yes |
| winRate | String | Yes |
| csPerMinute | String | Yes |
| damagePerMinute | String | Yes |
| killsPerMinute | String | Yes |
| goldPerMinute | String | Yes |
| averageGameTime | String | Yes |
| averageTimeSpentDead | String | Yes |
| totalGameTime | String | Yes |
| _count | ProfileCountAggregateOutputType | No |
| _avg | ProfileAvgAggregateOutputType | No |
| _sum | ProfileSumAggregateOutputType | No |
| _min | ProfileMinAggregateOutputType | No |
| _max | ProfileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SeedIdentifierCountAggregateOutputType | No |
| _min | SeedIdentifierMinAggregateOutputType | No |
| _max | SeedIdentifierMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| identifier | String | Yes |
| type | String | Yes |
| timestamp | DateTime | Yes |
| priority | Boolean | Yes |
| retrieved | Boolean | Yes |
| _count | SeedIdentifierCountAggregateOutputType | No |
| _min | SeedIdentifierMinAggregateOutputType | No |
| _max | SeedIdentifierMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SourceCountAggregateOutputType | No |
| _min | SourceMinAggregateOutputType | No |
| _max | SourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| api | String | Yes |
| _count | SourceCountAggregateOutputType | No |
| _min | SourceMinAggregateOutputType | No |
| _max | SourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TeamCountAggregateOutputType | No |
| _avg | TeamAvgAggregateOutputType | No |
| _sum | TeamSumAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| gameId | String | No |
| teamId | Int | No |
| teamMatchId | String | Yes |
| win | Boolean | Yes |
| _count | TeamCountAggregateOutputType | No |
| _avg | TeamAvgAggregateOutputType | No |
| _sum | TeamSumAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TeamBuildingKillCountAggregateOutputType | No |
| _min | TeamBuildingKillMinAggregateOutputType | No |
| _max | TeamBuildingKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| lane | String | Yes |
| side | String | Yes |
| towerLocation | String | Yes |
| _count | TeamBuildingKillCountAggregateOutputType | No |
| _min | TeamBuildingKillMinAggregateOutputType | No |
| _max | TeamBuildingKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TeamMonsterKillCountAggregateOutputType | No |
| _min | TeamMonsterKillMinAggregateOutputType | No |
| _max | TeamMonsterKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| type | String | Yes |
| subType | String | Yes |
| _count | TeamMonsterKillCountAggregateOutputType | No |
| _min | TeamMonsterKillMinAggregateOutputType | No |
| _max | TeamMonsterKillMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RuneSelectionCountAggregateOutputType | No |
| _avg | RuneSelectionAvgAggregateOutputType | No |
| _sum | RuneSelectionSumAggregateOutputType | No |
| _min | RuneSelectionMinAggregateOutputType | No |
| _max | RuneSelectionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| runeStyleId | String | No |
| perk | Int | No |
| var1 | Int | No |
| var2 | Int | No |
| var3 | Int | No |
| _count | RuneSelectionCountAggregateOutputType | No |
| _avg | RuneSelectionAvgAggregateOutputType | No |
| _sum | RuneSelectionSumAggregateOutputType | No |
| _min | RuneSelectionMinAggregateOutputType | No |
| _max | RuneSelectionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RuneStyleCountAggregateOutputType | No |
| _avg | RuneStyleAvgAggregateOutputType | No |
| _sum | RuneStyleSumAggregateOutputType | No |
| _min | RuneStyleMinAggregateOutputType | No |
| _max | RuneStyleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| playerRunesId | String | No |
| description | String | Yes |
| style | Int | No |
| _count | RuneStyleCountAggregateOutputType | No |
| _avg | RuneStyleAvgAggregateOutputType | No |
| _sum | RuneStyleSumAggregateOutputType | No |
| _min | RuneStyleMinAggregateOutputType | No |
| _max | RuneStyleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| profileId | Int | Yes |
| month | Int | Yes |
| year | Int | Yes |
| day | Int | Yes |
| gamesPlayed | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| month | Float | No |
| year | Float | No |
| day | Float | No |
| gamesPlayed | Float | No |
| Name | Type | Nullable |
|---|---|---|
| month | Int | No |
| year | Int | No |
| day | Int | No |
| gamesPlayed | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| month | Int | No |
| year | Int | No |
| day | Int | No |
| gamesPlayed | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| month | Int | No |
| year | Int | No |
| day | Int | No |
| gamesPlayed | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| profileId | Int | Yes |
| champion | Int | Yes |
| wins | Int | Yes |
| games | Int | Yes |
| spell1Casts | Int | Yes |
| spell2Casts | Int | Yes |
| spell3Casts | Int | Yes |
| spell4Casts | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| wins | Float | No |
| games | Float | No |
| spell1Casts | Float | No |
| spell2Casts | Float | No |
| spell3Casts | Float | No |
| spell4Casts | Float | No |
| Name | Type | Nullable |
|---|---|---|
| wins | Int | No |
| games | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| champion | String | No |
| wins | Int | No |
| games | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| champion | String | No |
| wins | Int | No |
| games | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| profileId | Int | Yes |
| name | Int | Yes |
| wins | Int | Yes |
| losses | Int | Yes |
| winrate | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| wins | Float | No |
| losses | Float | No |
| Name | Type | Nullable |
|---|---|---|
| wins | Int | No |
| losses | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| name | String | No |
| wins | Int | No |
| losses | Int | No |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| profileId | String | No |
| name | String | No |
| wins | Int | No |
| losses | Int | No |
| winrate | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| startTime | Int | Yes |
| currentSeason | Int | Yes |
| seeding | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| startTime | String | No |
| currentSeason | String | No |
| seeding | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| startTime | String | No |
| currentSeason | String | No |
| seeding | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| position | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| timestamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| timestamp | Float | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Int | No |
| Name | Type | Nullable |
|---|---|---|
| source | Int | Yes |
| from_PlayerEndOfGameStat_game | Int | Yes |
| from_Team_game | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| matchId | Int | Yes |
| gameId | Int | Yes |
| gameCreation | Int | Yes |
| gameStartTimestamp | Int | Yes |
| gameEndTimestamp | Int | Yes |
| duration | Int | Yes |
| start | Int | Yes |
| gameVersion | Int | Yes |
| blueTeamId | Int | Yes |
| redTeamId | Int | Yes |
| tournament | Int | Yes |
| gameInSeries | Int | Yes |
| vod | Int | Yes |
| platformId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| duration | Float | No |
| gameInSeries | Float | No |
| Name | Type | Nullable |
|---|---|---|
| duration | Int | No |
| gameInSeries | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | No |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | No |
| redTeamId | String | No |
| tournament | String | No |
| gameInSeries | Int | No |
| vod | String | No |
| platformId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| matchId | String | No |
| gameId | String | No |
| gameCreation | String | No |
| gameStartTimestamp | String | No |
| gameEndTimestamp | String | No |
| duration | Int | No |
| start | String | No |
| gameVersion | String | No |
| blueTeamId | String | No |
| redTeamId | String | No |
| tournament | String | No |
| gameInSeries | Int | No |
| vod | String | No |
| platformId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| teamId | Int | Yes |
| first | Int | Yes |
| kills | Int | Yes |
| type | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| kills | Float | No |
| Name | Type | Nullable |
|---|---|---|
| kills | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | No |
| first | Boolean | No |
| kills | Int | No |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | No |
| first | Boolean | No |
| kills | Int | No |
| type | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| teamId | Int | Yes |
| championId | Int | Yes |
| pickTurn | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| championId | Float | No |
| pickTurn | Float | No |
| Name | Type | Nullable |
|---|---|---|
| championId | Int | No |
| pickTurn | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | No |
| championId | Int | No |
| pickTurn | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| teamId | String | No |
| championId | Int | No |
| pickTurn | Int | No |
| Name | Type | Nullable |
|---|---|---|
| kills | Int | Yes |
| deaths | Int | Yes |
| teams | Int | Yes |
| monsterKills | Int | Yes |
| buildingKills | Int | Yes |
| itemEvent | Int | Yes |
| endOfGameStats | Int | Yes |
| snapshots | Int | Yes |
| wardEvents | Int | Yes |
| skillLevelUpEvents | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| puuid | Int | Yes |
| accountId | Int | Yes |
| platformId | Int | Yes |
| summonerId | Int | Yes |
| summonerName | Int | Yes |
| summonerLevel | Int | Yes |
| profileIconId | Int | Yes |
| revisionDate | Int | Yes |
| profileId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| summonerLevel | Float | No |
| profileIconId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| summonerLevel | Int | No |
| profileIconId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | No |
| profileIconId | Int | No |
| revisionDate | String | No |
| profileId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| puuid | String | No |
| accountId | String | No |
| platformId | String | No |
| summonerId | String | No |
| summonerName | String | No |
| summonerLevel | Int | No |
| profileIconId | Int | No |
| revisionDate | String | No |
| profileId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| playerId | Int | Yes |
| gameId | Int | Yes |
| perksId | Int | Yes |
| itemsId | Int | Yes |
| assists | Int | Yes |
| baronKills | Int | Yes |
| bountyLevel | Int | Yes |
| championExperience | Int | Yes |
| championLevel | Int | Yes |
| championId | Int | Yes |
| championName | Int | Yes |
| championTransform | Int | Yes |
| consumablesPurchased | Int | Yes |
| damageDealtToBuildings | Int | Yes |
| damageDealtToObjectives | Int | Yes |
| damageDealtToTurrets | Int | Yes |
| damageSelfMitigated | Int | Yes |
| deaths | Int | Yes |
| detectorWardsPlaced | Int | Yes |
| doubleKills | Int | Yes |
| dragonKills | Int | Yes |
| firstBlood | Int | Yes |
| firstBloodAssist | Int | Yes |
| firstTowerKill | Int | Yes |
| firstTowerAssist | Int | Yes |
| gameEndedInEarlySurrender | Int | Yes |
| gameEndedInSurrender | Int | Yes |
| goldEarned | Int | Yes |
| goldSpent | Int | Yes |
| individualPosition | Int | Yes |
| inhibitorKills | Int | Yes |
| inhibitorTakedowns | Int | Yes |
| inhibitorsLost | Int | Yes |
| item0 | Int | Yes |
| item1 | Int | Yes |
| item2 | Int | Yes |
| item3 | Int | Yes |
| item4 | Int | Yes |
| item5 | Int | Yes |
| item6 | Int | Yes |
| itemsPurchased | Int | Yes |
| killingSprees | Int | Yes |
| kills | Int | Yes |
| lane | Int | Yes |
| largestCriticalStrike | Int | Yes |
| largestKillingSpree | Int | Yes |
| largestMultiKill | Int | Yes |
| longestTimeSpentLiving | Int | Yes |
| magicDamageDealt | Int | Yes |
| magicDamageDealtToChampions | Int | Yes |
| magicDamageTaken | Int | Yes |
| neutralMinionsKilled | Int | Yes |
| nexusKills | Int | Yes |
| nexusLost | Int | Yes |
| nexusTakedowns | Int | Yes |
| objectivesStolen | Int | Yes |
| objectivesStolenAssists | Int | Yes |
| participantId | Int | Yes |
| pentaKills | Int | Yes |
| physicalDamageDealt | Int | Yes |
| physicalDamageDealtToChampions | Int | Yes |
| physicalDamageTaken | Int | Yes |
| quadraKills | Int | Yes |
| riotIdName | Int | Yes |
| riotIdTagline | Int | Yes |
| role | Int | Yes |
| sightWardsBoughtInGame | Int | Yes |
| spell1Casts | Int | Yes |
| spell2Casts | Int | Yes |
| spell3Casts | Int | Yes |
| spell4Casts | Int | Yes |
| summoner1Casts | Int | Yes |
| summoner1Id | Int | Yes |
| summoner2Casts | Int | Yes |
| summoner2Id | Int | Yes |
| summonerLevel | Int | Yes |
| summonerName | Int | Yes |
| teamEarlySurrendered | Int | Yes |
| teamId | Int | Yes |
| teamPosition | Int | Yes |
| timeCCingOthers | Int | Yes |
| timePlayed | Int | Yes |
| totalDamageDealt | Int | Yes |
| totalDamageDealtToChampions | Int | Yes |
| totalDamageShieldedOnTeammates | Int | Yes |
| totalDamageTaken | Int | Yes |
| totalHeal | Int | Yes |
| totalHealsOnTeammates | Int | Yes |
| totalMinionsKilled | Int | Yes |
| totalTimeCCDealt | Int | Yes |
| totalTimeSpentDead | Int | Yes |
| totalUnitsHealed | Int | Yes |
| tripleKills | Int | Yes |
| trueDamageDealt | Int | Yes |
| trueDamageDealtToChampions | Int | Yes |
| trueDamageTaken | Int | Yes |
| turretsKilled | Int | Yes |
| turretTakedowns | Int | Yes |
| turretsLost | Int | Yes |
| unrealKills | Int | Yes |
| visionScore | Int | Yes |
| visionWardsBoughtInGame | Int | Yes |
| wardsKilled | Int | Yes |
| wardsPlaced | Int | Yes |
| win | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| assists | Float | No |
| baronKills | Float | No |
| bountyLevel | Float | No |
| championExperience | Float | No |
| championLevel | Float | No |
| championId | Float | No |
| championTransform | Float | No |
| consumablesPurchased | Float | No |
| damageDealtToBuildings | Float | No |
| damageDealtToObjectives | Float | No |
| damageDealtToTurrets | Float | No |
| damageSelfMitigated | Float | No |
| deaths | Float | No |
| detectorWardsPlaced | Float | No |
| doubleKills | Float | No |
| dragonKills | Float | No |
| goldEarned | Float | No |
| goldSpent | Float | No |
| inhibitorKills | Float | No |
| inhibitorTakedowns | Float | No |
| inhibitorsLost | Float | No |
| item0 | Float | No |
| item1 | Float | No |
| item2 | Float | No |
| item3 | Float | No |
| item4 | Float | No |
| item5 | Float | No |
| item6 | Float | No |
| itemsPurchased | Float | No |
| killingSprees | Float | No |
| kills | Float | No |
| largestCriticalStrike | Float | No |
| largestKillingSpree | Float | No |
| largestMultiKill | Float | No |
| longestTimeSpentLiving | Float | No |
| magicDamageDealt | Float | No |
| magicDamageDealtToChampions | Float | No |
| magicDamageTaken | Float | No |
| neutralMinionsKilled | Float | No |
| nexusKills | Float | No |
| nexusLost | Float | No |
| nexusTakedowns | Float | No |
| objectivesStolen | Float | No |
| objectivesStolenAssists | Float | No |
| participantId | Float | No |
| pentaKills | Float | No |
| physicalDamageDealt | Float | No |
| physicalDamageDealtToChampions | Float | No |
| physicalDamageTaken | Float | No |
| quadraKills | Float | No |
| sightWardsBoughtInGame | Float | No |
| spell1Casts | Float | No |
| spell2Casts | Float | No |
| spell3Casts | Float | No |
| spell4Casts | Float | No |
| summoner1Casts | Float | No |
| summoner1Id | Float | No |
| summoner2Casts | Float | No |
| summoner2Id | Float | No |
| summonerLevel | Float | No |
| teamId | Float | No |
| timeCCingOthers | Float | No |
| timePlayed | Float | No |
| totalDamageDealt | Float | No |
| totalDamageDealtToChampions | Float | No |
| totalDamageShieldedOnTeammates | Float | No |
| totalDamageTaken | Float | No |
| totalHeal | Float | No |
| totalHealsOnTeammates | Float | No |
| totalMinionsKilled | Float | No |
| totalTimeCCDealt | Float | No |
| totalTimeSpentDead | Float | No |
| totalUnitsHealed | Float | No |
| tripleKills | Float | No |
| trueDamageDealt | Float | No |
| trueDamageDealtToChampions | Float | No |
| trueDamageTaken | Float | No |
| turretsKilled | Float | No |
| turretTakedowns | Float | No |
| turretsLost | Float | No |
| unrealKills | Float | No |
| visionScore | Float | No |
| visionWardsBoughtInGame | Float | No |
| wardsKilled | Float | No |
| wardsPlaced | Float | No |
| Name | Type | Nullable |
|---|---|---|
| assists | Int | No |
| baronKills | Int | No |
| bountyLevel | Int | No |
| championExperience | Int | No |
| championLevel | Int | No |
| championId | Int | No |
| championTransform | Int | No |
| consumablesPurchased | Int | No |
| damageDealtToBuildings | Int | No |
| damageDealtToObjectives | Int | No |
| damageDealtToTurrets | Int | No |
| damageSelfMitigated | Int | No |
| deaths | Int | No |
| detectorWardsPlaced | Int | No |
| doubleKills | Int | No |
| dragonKills | Int | No |
| goldEarned | Int | No |
| goldSpent | Int | No |
| inhibitorKills | Int | No |
| inhibitorTakedowns | Int | No |
| inhibitorsLost | Int | No |
| item0 | Int | No |
| item1 | Int | No |
| item2 | Int | No |
| item3 | Int | No |
| item4 | Int | No |
| item5 | Int | No |
| item6 | Int | No |
| itemsPurchased | Int | No |
| killingSprees | Int | No |
| kills | Int | No |
| largestCriticalStrike | Int | No |
| largestKillingSpree | Int | No |
| largestMultiKill | Int | No |
| longestTimeSpentLiving | Int | No |
| magicDamageDealt | Int | No |
| magicDamageDealtToChampions | Int | No |
| magicDamageTaken | Int | No |
| neutralMinionsKilled | Int | No |
| nexusKills | Int | No |
| nexusLost | Int | No |
| nexusTakedowns | Int | No |
| objectivesStolen | Int | No |
| objectivesStolenAssists | Int | No |
| participantId | Int | No |
| pentaKills | Int | No |
| physicalDamageDealt | Int | No |
| physicalDamageDealtToChampions | Int | No |
| physicalDamageTaken | Int | No |
| quadraKills | Int | No |
| sightWardsBoughtInGame | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| summoner1Casts | Int | No |
| summoner1Id | Int | No |
| summoner2Casts | Int | No |
| summoner2Id | Int | No |
| summonerLevel | Int | No |
| teamId | Int | No |
| timeCCingOthers | Int | No |
| timePlayed | Int | No |
| totalDamageDealt | Int | No |
| totalDamageDealtToChampions | Int | No |
| totalDamageShieldedOnTeammates | Int | No |
| totalDamageTaken | Int | No |
| totalHeal | Int | No |
| totalHealsOnTeammates | Int | No |
| totalMinionsKilled | Int | No |
| totalTimeCCDealt | Int | No |
| totalTimeSpentDead | Int | No |
| totalUnitsHealed | Int | No |
| tripleKills | Int | No |
| trueDamageDealt | Int | No |
| trueDamageDealtToChampions | Int | No |
| trueDamageTaken | Int | No |
| turretsKilled | Int | No |
| turretTakedowns | Int | No |
| turretsLost | Int | No |
| unrealKills | Int | No |
| visionScore | Int | No |
| visionWardsBoughtInGame | Int | No |
| wardsKilled | Int | No |
| wardsPlaced | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | No |
| gameId | String | No |
| perksId | String | No |
| itemsId | String | No |
| assists | Int | No |
| baronKills | Int | No |
| bountyLevel | Int | No |
| championExperience | Int | No |
| championLevel | Int | No |
| championId | Int | No |
| championName | String | No |
| championTransform | Int | No |
| consumablesPurchased | Int | No |
| damageDealtToBuildings | Int | No |
| damageDealtToObjectives | Int | No |
| damageDealtToTurrets | Int | No |
| damageSelfMitigated | Int | No |
| deaths | Int | No |
| detectorWardsPlaced | Int | No |
| doubleKills | Int | No |
| dragonKills | Int | No |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | No |
| goldSpent | Int | No |
| individualPosition | String | No |
| inhibitorKills | Int | No |
| inhibitorTakedowns | Int | No |
| inhibitorsLost | Int | No |
| item0 | Int | No |
| item1 | Int | No |
| item2 | Int | No |
| item3 | Int | No |
| item4 | Int | No |
| item5 | Int | No |
| item6 | Int | No |
| itemsPurchased | Int | No |
| killingSprees | Int | No |
| kills | Int | No |
| lane | String | No |
| largestCriticalStrike | Int | No |
| largestKillingSpree | Int | No |
| largestMultiKill | Int | No |
| longestTimeSpentLiving | Int | No |
| magicDamageDealt | Int | No |
| magicDamageDealtToChampions | Int | No |
| magicDamageTaken | Int | No |
| neutralMinionsKilled | Int | No |
| nexusKills | Int | No |
| nexusLost | Int | No |
| nexusTakedowns | Int | No |
| objectivesStolen | Int | No |
| objectivesStolenAssists | Int | No |
| participantId | Int | No |
| pentaKills | Int | No |
| physicalDamageDealt | Int | No |
| physicalDamageDealtToChampions | Int | No |
| physicalDamageTaken | Int | No |
| quadraKills | Int | No |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| summoner1Casts | Int | No |
| summoner1Id | Int | No |
| summoner2Casts | Int | No |
| summoner2Id | Int | No |
| summonerLevel | Int | No |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | No |
| teamPosition | String | No |
| timeCCingOthers | Int | No |
| timePlayed | Int | No |
| totalDamageDealt | Int | No |
| totalDamageDealtToChampions | Int | No |
| totalDamageShieldedOnTeammates | Int | No |
| totalDamageTaken | Int | No |
| totalHeal | Int | No |
| totalHealsOnTeammates | Int | No |
| totalMinionsKilled | Int | No |
| totalTimeCCDealt | Int | No |
| totalTimeSpentDead | Int | No |
| totalUnitsHealed | Int | No |
| tripleKills | Int | No |
| trueDamageDealt | Int | No |
| trueDamageDealtToChampions | Int | No |
| trueDamageTaken | Int | No |
| turretsKilled | Int | No |
| turretTakedowns | Int | No |
| turretsLost | Int | No |
| unrealKills | Int | No |
| visionScore | Int | No |
| visionWardsBoughtInGame | Int | No |
| wardsKilled | Int | No |
| wardsPlaced | Int | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerId | String | No |
| gameId | String | No |
| perksId | String | No |
| itemsId | String | No |
| assists | Int | No |
| baronKills | Int | No |
| bountyLevel | Int | No |
| championExperience | Int | No |
| championLevel | Int | No |
| championId | Int | No |
| championName | String | No |
| championTransform | Int | No |
| consumablesPurchased | Int | No |
| damageDealtToBuildings | Int | No |
| damageDealtToObjectives | Int | No |
| damageDealtToTurrets | Int | No |
| damageSelfMitigated | Int | No |
| deaths | Int | No |
| detectorWardsPlaced | Int | No |
| doubleKills | Int | No |
| dragonKills | Int | No |
| firstBlood | Boolean | No |
| firstBloodAssist | Boolean | No |
| firstTowerKill | Boolean | No |
| firstTowerAssist | Boolean | No |
| gameEndedInEarlySurrender | Boolean | No |
| gameEndedInSurrender | Boolean | No |
| goldEarned | Int | No |
| goldSpent | Int | No |
| individualPosition | String | No |
| inhibitorKills | Int | No |
| inhibitorTakedowns | Int | No |
| inhibitorsLost | Int | No |
| item0 | Int | No |
| item1 | Int | No |
| item2 | Int | No |
| item3 | Int | No |
| item4 | Int | No |
| item5 | Int | No |
| item6 | Int | No |
| itemsPurchased | Int | No |
| killingSprees | Int | No |
| kills | Int | No |
| lane | String | No |
| largestCriticalStrike | Int | No |
| largestKillingSpree | Int | No |
| largestMultiKill | Int | No |
| longestTimeSpentLiving | Int | No |
| magicDamageDealt | Int | No |
| magicDamageDealtToChampions | Int | No |
| magicDamageTaken | Int | No |
| neutralMinionsKilled | Int | No |
| nexusKills | Int | No |
| nexusLost | Int | No |
| nexusTakedowns | Int | No |
| objectivesStolen | Int | No |
| objectivesStolenAssists | Int | No |
| participantId | Int | No |
| pentaKills | Int | No |
| physicalDamageDealt | Int | No |
| physicalDamageDealtToChampions | Int | No |
| physicalDamageTaken | Int | No |
| quadraKills | Int | No |
| riotIdName | String | No |
| riotIdTagline | String | No |
| role | String | No |
| sightWardsBoughtInGame | Int | No |
| spell1Casts | Int | No |
| spell2Casts | Int | No |
| spell3Casts | Int | No |
| spell4Casts | Int | No |
| summoner1Casts | Int | No |
| summoner1Id | Int | No |
| summoner2Casts | Int | No |
| summoner2Id | Int | No |
| summonerLevel | Int | No |
| summonerName | String | No |
| teamEarlySurrendered | Boolean | No |
| teamId | Int | No |
| teamPosition | String | No |
| timeCCingOthers | Int | No |
| timePlayed | Int | No |
| totalDamageDealt | Int | No |
| totalDamageDealtToChampions | Int | No |
| totalDamageShieldedOnTeammates | Int | No |
| totalDamageTaken | Int | No |
| totalHeal | Int | No |
| totalHealsOnTeammates | Int | No |
| totalMinionsKilled | Int | No |
| totalTimeCCDealt | Int | No |
| totalTimeSpentDead | Int | No |
| totalUnitsHealed | Int | No |
| tripleKills | Int | No |
| trueDamageDealt | Int | No |
| trueDamageDealtToChampions | Int | No |
| trueDamageTaken | Int | No |
| turretsKilled | Int | No |
| turretTakedowns | Int | No |
| turretsLost | Int | No |
| unrealKills | Int | No |
| visionScore | Int | No |
| visionWardsBoughtInGame | Int | No |
| wardsKilled | Int | No |
| wardsPlaced | Int | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| playerEndOfGameStat | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| slot | Int | Yes |
| itemId | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| slot | Float | No |
| itemId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| slot | Int | No |
| itemId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | No |
| itemId | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| slot | Int | No |
| itemId | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| player | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| itemId | Int | Yes |
| name | Int | Yes |
| undoId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| itemId | Float | No |
| undoId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| itemId | Int | No |
| undoId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| itemId | Int | No |
| name | String | No |
| undoId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| itemId | Int | No |
| name | String | No |
| undoId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| killer | Int | Yes |
| victim | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| runeStyle | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| defense | Int | Yes |
| flex | Int | Yes |
| offense | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| defense | Float | No |
| flex | Float | No |
| offense | Float | No |
| Name | Type | Nullable |
|---|---|---|
| defense | Int | No |
| flex | Int | No |
| offense | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| defense | Int | No |
| flex | Int | No |
| offense | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| defense | Int | No |
| flex | Int | No |
| offense | Int | No |
| Name | Type | Nullable |
|---|---|---|
| player | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| slot | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| slot | Float | No |
| Name | Type | Nullable |
|---|---|---|
| slot | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| slot | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| slot | Int | No |
| Name | Type | Nullable |
|---|---|---|
| position | Int | Yes |
| player | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| timestamp | Int | Yes |
| currentGold | Int | Yes |
| totalGold | Int | Yes |
| totalGoldDiff | Int | Yes |
| xp | Int | Yes |
| xpDiff | Int | Yes |
| level | Int | Yes |
| cs | Int | Yes |
| csDiff | Int | Yes |
| monstersKilled | Int | Yes |
| monstersKilledDiff | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| timestamp | Float | No |
| currentGold | Float | No |
| totalGold | Float | No |
| totalGoldDiff | Float | No |
| xp | Float | No |
| xpDiff | Float | No |
| level | Float | No |
| cs | Float | No |
| csDiff | Float | No |
| monstersKilled | Float | No |
| monstersKilledDiff | Float | No |
| Name | Type | Nullable |
|---|---|---|
| timestamp | Float | No |
| currentGold | Int | No |
| totalGold | Int | No |
| totalGoldDiff | Int | No |
| xp | Int | No |
| xpDiff | Int | No |
| level | Int | No |
| cs | Int | No |
| csDiff | Int | No |
| monstersKilled | Int | No |
| monstersKilledDiff | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | No |
| currentGold | Int | No |
| totalGold | Int | No |
| totalGoldDiff | Int | No |
| xp | Int | No |
| xpDiff | Int | No |
| level | Int | No |
| cs | Int | No |
| csDiff | Int | No |
| monstersKilled | Int | No |
| monstersKilledDiff | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| timestamp | Float | No |
| currentGold | Int | No |
| totalGold | Int | No |
| totalGoldDiff | Int | No |
| xp | Int | No |
| xpDiff | Int | No |
| level | Int | No |
| cs | Int | No |
| csDiff | Int | No |
| monstersKilled | Int | No |
| monstersKilledDiff | Int | No |
| Name | Type | Nullable |
|---|---|---|
| player | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| wardType | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| wardType | PlayerWardEventWardTypeType | No |
| Name | Type | Nullable |
|---|---|---|
| event | Int | Yes |
| playerSnapshot | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| x | Int | Yes |
| y | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| x | Float | No |
| y | Float | No |
| Name | Type | Nullable |
|---|---|---|
| x | Int | No |
| y | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| x | Int | No |
| y | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| x | Int | No |
| y | Int | No |
| Name | Type | Nullable |
|---|---|---|
| activity | Int | Yes |
| championWinrate | Int | Yes |
| duos | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| update | Int | Yes |
| lastUpdate | Int | Yes |
| kills | Int | Yes |
| deaths | Int | Yes |
| assists | Int | Yes |
| kda | Int | Yes |
| winRate | Int | Yes |
| csPerMinute | Int | Yes |
| damagePerMinute | Int | Yes |
| killsPerMinute | Int | Yes |
| goldPerMinute | Int | Yes |
| averageGameTime | Int | Yes |
| averageTimeSpentDead | Int | Yes |
| totalGameTime | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| kills | Float | No |
| deaths | Float | No |
| assists | Float | No |
| Name | Type | Nullable |
|---|---|---|
| kills | Int | No |
| deaths | Int | No |
| assists | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| lastUpdate | DateTime | No |
| kills | Int | No |
| deaths | Int | No |
| assists | Int | No |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| update | Boolean | No |
| lastUpdate | DateTime | No |
| kills | Int | No |
| deaths | Int | No |
| assists | Int | No |
| kda | String | No |
| winRate | String | No |
| csPerMinute | String | No |
| damagePerMinute | String | No |
| killsPerMinute | String | No |
| goldPerMinute | String | No |
| averageGameTime | String | No |
| averageTimeSpentDead | String | No |
| totalGameTime | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| identifier | Int | Yes |
| type | Int | Yes |
| timestamp | Int | Yes |
| priority | Int | Yes |
| retrieved | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| type | String | No |
| timestamp | DateTime | No |
| priority | Boolean | No |
| retrieved | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| identifier | String | No |
| type | String | No |
| timestamp | DateTime | No |
| priority | Boolean | No |
| retrieved | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| game | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| api | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| api | String | No |
| Name | Type | Nullable |
|---|---|---|
| pickBan | Int | Yes |
| players | Int | Yes |
| objectives | Int | Yes |
| from_Game_blueTeam | Int | Yes |
| from_Game_redTeam | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| teamId | Int | Yes |
| teamMatchId | Int | Yes |
| win | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| teamId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| teamId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | No |
| teamId | Int | No |
| teamMatchId | String | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| gameId | String | No |
| teamId | Int | No |
| teamMatchId | String | No |
| win | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| killer | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| lane | Int | Yes |
| side | Int | Yes |
| towerLocation | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| lane | String | No |
| side | String | No |
| towerLocation | String | No |
| Name | Type | Nullable |
|---|---|---|
| killer | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| type | Int | Yes |
| subType | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| subType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| runeStyleId | Int | Yes |
| perk | Int | Yes |
| var1 | Int | Yes |
| var2 | Int | Yes |
| var3 | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| perk | Float | No |
| var1 | Float | No |
| var2 | Float | No |
| var3 | Float | No |
| Name | Type | Nullable |
|---|---|---|
| perk | Int | No |
| var1 | Int | No |
| var2 | Int | No |
| var3 | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyleId | String | No |
| perk | Int | No |
| var1 | Int | No |
| var2 | Int | No |
| var3 | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| runeStyleId | String | No |
| perk | Int | No |
| var1 | Int | No |
| var2 | Int | No |
| var3 | Int | No |
| Name | Type | Nullable |
|---|---|---|
| selection | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| playerRunesId | Int | Yes |
| description | Int | Yes |
| style | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| style | Float | No |
| Name | Type | Nullable |
|---|---|---|
| style | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunesId | String | No |
| description | String | No |
| style | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| playerRunesId | String | No |
| description | String | No |
| style | Int | No |